0
0
mirror of https://github.com/mediathekview/zapp.git synced 2024-09-20 20:23:04 +02:00

Re-enable proguard

This commit is contained in:
Christine Emrich 2017-05-11 16:48:47 +02:00
parent 27db930585
commit ac4b99dfe9
2 changed files with 14 additions and 0 deletions

View File

@ -35,6 +35,7 @@ android {
}
release {
minifyEnabled true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

View File

@ -21,3 +21,16 @@
-dontwarn org.joda.convert.FromString
-dontwarn org.joda.convert.ToString
## end joda-time-android 2.8.0
## start cling
-dontwarn org.fourthline.cling.**
-dontwarn org.seamless.**
-dontwarn org.eclipse.jetty.**
-keep class javax.** { *; }
-keep class org.** { *; }
-keep class org.fourthline.cling.** { *;}
-keep class org.seamless.** { *;}
-keep class org.eclipse.jetty.** { *;}
-keepattributes Annotation, InnerClasses, Signature
# end cling