Fix crash due to proguard rules

This commit is contained in:
Shinokuni 2019-10-05 18:06:11 +02:00
parent be04139d39
commit cc77edf032
3 changed files with 7 additions and 2 deletions

View File

@ -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 {

View File

@ -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.* {*;}

View File

@ -0,0 +1 @@
Fix a crash due to proguard rules