Fix UI bug caused by obfuscation

Esse commit está contido em:
Anthony Restaino
2015-09-29 07:42:56 -04:00
commit a015d810ea
2 arquivos alterados com 15 adições e 3 exclusões
+3 -3
Ver Arquivo
@@ -7,7 +7,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionName "4.2.1a"
versionName "4.2.2a"
}
sourceSets {
lightningPlus.setRoot('src/LightningPlus')
@@ -30,12 +30,12 @@ android {
lightningPlus {
buildConfigField "boolean", "FULL_VERSION", "true"
applicationId "acr.browser.lightning"
versionCode 82
versionCode 83
}
lightningLite {
buildConfigField "boolean", "FULL_VERSION", "false"
applicationId "acr.browser.barebones"
versionCode 83
versionCode 84
}
}
lintOptions {
+12
Ver Arquivo
@@ -50,6 +50,18 @@
public static *** i(...);
}
-keep class butterknife.** { *; }
-dontwarn butterknife.internal.**
-keep class **$$ViewBinder { *; }
-keepclasseswithmembernames class * {
@butterknife.* <fields>;
}
-keepclasseswithmembernames class * {
@butterknife.* <methods>;
}
# this will fix a force close in ReadingActivity
-keep public class org.jsoup.** {
public *;