Update proguard to fix the issue
This commit is contained in:
parent
dcfb6fe3b8
commit
f52c305403
2 changed files with 19 additions and 14 deletions
|
@ -141,9 +141,11 @@ android {
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
debug {
|
debug {
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
|
||||||
signingConfig signingConfigs.development
|
signingConfig signingConfigs.development
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
|
||||||
signingConfig signingConfigs.publishing
|
signingConfig signingConfigs.publishing
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,20 +1,23 @@
|
||||||
# To enable ProGuard in your project, edit project.properties
|
|
||||||
# to define the proguard.config property as described in that file.
|
|
||||||
#
|
|
||||||
# Add project specific ProGuard rules here.
|
|
||||||
# By default, the flags in this file are appended to flags specified
|
|
||||||
# in ${sdk.dir}/tools/proguard/proguard-android.txt
|
|
||||||
# You can edit the include path and order by changing the ProGuard
|
|
||||||
# include property in project.properties.
|
|
||||||
#
|
|
||||||
# For more details, see
|
|
||||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
||||||
|
|
||||||
# Add any project specific keep options here:
|
|
||||||
|
|
||||||
# If your project uses WebView with JS, uncomment the following
|
# If your project uses WebView with JS, uncomment the following
|
||||||
# and specify the fully qualified class name to the JavaScript interface
|
# and specify the fully qualified class name to the JavaScript interface
|
||||||
# class:
|
# class:
|
||||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||||
# public *;
|
# public *;
|
||||||
#}
|
#}
|
||||||
|
# Allow obfuscation of android.support.v7.internal.view.menu.**
|
||||||
|
# to avoid problem on Samsung 4.2.2 devices with appcompat v21
|
||||||
|
# see https://code.google.com/p/android/issues/detail?id=78377
|
||||||
|
-keep class !android.support.v7.internal.view.menu.**,android.support.** {*;}
|
||||||
|
-keep class net.osmand.** { *; }
|
||||||
|
-keep interface net.osmand.** { *; }
|
||||||
|
|
||||||
|
-keep class com.google.** { *; }
|
||||||
|
-keep interface com.google.** { *; }
|
||||||
|
-keep class com.jwetherell.** { *; }
|
||||||
|
-keep interface com.jwetherell.** { *; }
|
||||||
|
|
||||||
|
-keep class btools.** { *; }
|
||||||
|
-keep interface btools.** { *; }
|
||||||
|
-keep class alice.** { *; }
|
||||||
|
-keep interface alice.** { *; }
|
||||||
|
-dontwarn alice.**
|
Loading…
Reference in a new issue