Start using proguard

This commit is contained in:
Marvin W 2016-03-05 13:47:43 +01:00
parent 508babfb1b
commit 3ff5ad0e7a
3 changed files with 33 additions and 1 deletions

View File

@ -98,6 +98,12 @@ android {
// TODO: Remove MissingTranslation once we have stable strings and proper translations.
disable 'MissingTranslation', 'InvalidPackage'
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
if (file('user.gradle').exists()) {

1
play-services-core/proguard-rules.pro vendored Symbolic link
View File

@ -0,0 +1 @@
../proguard.flags

View File

@ -1,10 +1,35 @@
# We use ProGuard for optimizations, obfuscation is for those who have sth to hide
-dontobfuscate
-optimizations !code/allocation/variable
# We're referencing stuff that is unknown to the system
-libraryjar ../unifiednlp-compat/build/classes/main
-dontwarn java.awt.**
-dontwarn javax.annotation.**
# OkIO, OkHttp
-dontwarn okio.**
-dontwarn com.squareup.okhttp.**
-dontwarn org.oscim.tiling.source.OkHttpEngine
-dontwarn org.oscim.tiling.source.OkHttpEngine$OkHttpFactory
# Disable ProGuard Notes, they won't help here
-dontnote
# Keep dynamically loaded GMS classes
-keep public class com.google.android.gms.maps.internal.CreatorImpl
-keep public class com.google.android.gms.common.security.ProviderInstallerImpl
-keep public class com.google.android.gms.plus.plusone.PlusOneButtonCreatorImpl
-keepclassmembers class com.google.android.gms.common.security.ProviderInstallerImpl {
public *;
}
}
# Keep library info
-keep class **.BuildConfig
-keepclassmembers class **.BuildConfig { *; }
# Keep protobuf class builders
-keep public class * extends com.squareup.wire.Message
-keep public class * extends com.squareup.wire.Message$Builder
-keepclassmembers class * extends com.squareup.wire.Message$Builder { public <init>(...); }