mirror of https://github.com/readrops/Readrops.git
Fix crash due to proguard rules
This commit is contained in:
parent
be04139d39
commit
cc77edf032
|
@ -9,8 +9,8 @@ android {
|
|||
applicationId "com.readrops.app"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 28
|
||||
versionCode 3
|
||||
versionName "1.0.2"
|
||||
versionCode 4
|
||||
versionName "1.0.2.1"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
buildTypes {
|
||||
|
|
|
@ -19,3 +19,7 @@
|
|||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
-dontwarn org.xmlpull.v1.XmlPullParser
|
||||
-dontwarn org.xmlpull.v1.XmlSerializer
|
||||
-keep class org.xmlpull.v1.* {*;}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Fix a crash due to proguard rules
|
Loading…
Reference in New Issue