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"
|
applicationId "com.readrops.app"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
versionCode 3
|
versionCode 4
|
||||||
versionName "1.0.2"
|
versionName "1.0.2.1"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
@ -19,3 +19,7 @@
|
||||||
# If you keep the line number information, uncomment this to
|
# If you keep the line number information, uncomment this to
|
||||||
# hide the original source file name.
|
# hide the original source file name.
|
||||||
#-renamesourcefileattribute SourceFile
|
#-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