ref(proguard): Create common proguard config.
This commit is contained in:
parent
959e687ed4
commit
717fade79c
|
@ -33,7 +33,7 @@ android {
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules-release.pro'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,93 +1,5 @@
|
||||||
# Add project specific ProGuard rules here.
|
-include proguard-rules.pro
|
||||||
# By default, the flags in this file are appended to flags specified
|
|
||||||
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
|
|
||||||
# You can edit the include path and order by changing the proguardFiles
|
|
||||||
# directive in build.gradle.
|
|
||||||
#
|
|
||||||
# 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
|
|
||||||
# and specify the fully qualified class name to the JavaScript interface
|
|
||||||
# class:
|
|
||||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
|
||||||
# public *;
|
|
||||||
#}
|
|
||||||
|
|
||||||
# Disabling obfuscation is useful if you collect stack traces from production crashes
|
# Disabling obfuscation is useful if you collect stack traces from production crashes
|
||||||
# (unless you are using a system that supports de-obfuscate the stack traces).
|
# (unless you are using a system that supports de-obfuscate the stack traces).
|
||||||
-dontobfuscate
|
-dontobfuscate
|
||||||
|
|
||||||
# React Native
|
|
||||||
|
|
||||||
# Keep our interfaces so they can be used by other ProGuard rules.
|
|
||||||
# See http://sourceforge.net/p/proguard/bugs/466/
|
|
||||||
-keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
|
|
||||||
-keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
|
|
||||||
-keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
|
|
||||||
|
|
||||||
# Do not strip any method/class that is annotated with @DoNotStrip
|
|
||||||
-keep @com.facebook.proguard.annotations.DoNotStrip class *
|
|
||||||
-keep @com.facebook.common.internal.DoNotStrip class *
|
|
||||||
-keepclassmembers class * {
|
|
||||||
@com.facebook.proguard.annotations.DoNotStrip *;
|
|
||||||
@com.facebook.common.internal.DoNotStrip *;
|
|
||||||
}
|
|
||||||
|
|
||||||
-keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
|
|
||||||
void set*(***);
|
|
||||||
*** get*();
|
|
||||||
}
|
|
||||||
|
|
||||||
-keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
|
|
||||||
-keep class * extends com.facebook.react.bridge.NativeModule { *; }
|
|
||||||
-keepclassmembers,includedescriptorclasses class * { native <methods>; }
|
|
||||||
-keepclassmembers class * { @com.facebook.react.uimanager.UIProp <fields>; }
|
|
||||||
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp <methods>; }
|
|
||||||
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }
|
|
||||||
|
|
||||||
-keep class com.facebook.react.bridge.ModuleRegistryHolder { *; }
|
|
||||||
-keep class com.facebook.react.bridge.CatalystInstanceImpl { *; }
|
|
||||||
-keep class com.facebook.react.bridge.JavaScriptExecutor { *; }
|
|
||||||
-keep class com.facebook.react.bridge.queue.NativeRunnable { *; }
|
|
||||||
-keep class com.facebook.react.bridge.ExecutorToken { *; }
|
|
||||||
-keep class com.facebook.react.bridge.ReadableType { *; }
|
|
||||||
-keep class com.facebook.react.devsupport.** { *; }
|
|
||||||
-dontwarn com.facebook.react.devsupport.**
|
|
||||||
|
|
||||||
-dontwarn com.facebook.react.**
|
|
||||||
|
|
||||||
# TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
|
|
||||||
# See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details.
|
|
||||||
-dontwarn android.text.StaticLayout
|
|
||||||
|
|
||||||
# okhttp
|
|
||||||
|
|
||||||
-keepattributes Signature
|
|
||||||
-keepattributes *Annotation*
|
|
||||||
-keep class okhttp3.** { *; }
|
|
||||||
-keep interface okhttp3.** { *; }
|
|
||||||
-dontwarn okhttp3.**
|
|
||||||
-dontwarn com.squareup.okhttp.**
|
|
||||||
|
|
||||||
# okio
|
|
||||||
|
|
||||||
-keep class sun.misc.Unsafe { *; }
|
|
||||||
-dontwarn java.nio.file.*
|
|
||||||
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
|
|
||||||
-dontwarn okio.**
|
|
||||||
|
|
||||||
# FastImage
|
|
||||||
|
|
||||||
-keep public class com.dylanvann.fastimage.* {*;}
|
|
||||||
-keep public class com.dylanvann.fastimage.** {*;}
|
|
||||||
|
|
||||||
-keep class org.webrtc.** { *; }
|
|
||||||
|
|
||||||
|
|
||||||
-dontwarn com.google.appengine.**
|
|
||||||
-dontwarn javax.servlet.**
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
-include proguard-rules.pro
|
||||||
|
|
||||||
|
# Crashlytics
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
-keep public class * extends java.lang.Exception
|
|
@ -16,10 +16,6 @@
|
||||||
# public *;
|
# public *;
|
||||||
#}
|
#}
|
||||||
|
|
||||||
# Disabling obfuscation is useful if you collect stack traces from production crashes
|
|
||||||
# (unless you are using a system that supports de-obfuscate the stack traces).
|
|
||||||
# -dontobfuscate
|
|
||||||
|
|
||||||
# React Native
|
# React Native
|
||||||
|
|
||||||
# Keep our interfaces so they can be used by other ProGuard rules.
|
# Keep our interfaces so they can be used by other ProGuard rules.
|
||||||
|
@ -48,15 +44,6 @@
|
||||||
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp <methods>; }
|
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp <methods>; }
|
||||||
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }
|
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }
|
||||||
|
|
||||||
-keep class com.facebook.react.bridge.ModuleRegistryHolder { *; }
|
|
||||||
-keep class com.facebook.react.bridge.CatalystInstanceImpl { *; }
|
|
||||||
-keep class com.facebook.react.bridge.JavaScriptExecutor { *; }
|
|
||||||
-keep class com.facebook.react.bridge.queue.NativeRunnable { *; }
|
|
||||||
-keep class com.facebook.react.bridge.ExecutorToken { *; }
|
|
||||||
-keep class com.facebook.react.bridge.ReadableType { *; }
|
|
||||||
-keep class com.facebook.react.devsupport.** { *; }
|
|
||||||
-dontwarn com.facebook.react.devsupport.**
|
|
||||||
|
|
||||||
-dontwarn com.facebook.react.**
|
-dontwarn com.facebook.react.**
|
||||||
|
|
||||||
# TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
|
# TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
|
||||||
|
@ -70,7 +57,6 @@
|
||||||
-keep class okhttp3.** { *; }
|
-keep class okhttp3.** { *; }
|
||||||
-keep interface okhttp3.** { *; }
|
-keep interface okhttp3.** { *; }
|
||||||
-dontwarn okhttp3.**
|
-dontwarn okhttp3.**
|
||||||
-dontwarn com.squareup.okhttp.**
|
|
||||||
|
|
||||||
# okio
|
# okio
|
||||||
|
|
||||||
|
@ -81,16 +67,23 @@
|
||||||
|
|
||||||
# FastImage
|
# FastImage
|
||||||
|
|
||||||
-keep public class com.dylanvann.fastimage.* {*;}
|
|
||||||
-keep public class com.dylanvann.fastimage.** {*;}
|
-keep public class com.dylanvann.fastimage.** {*;}
|
||||||
|
|
||||||
|
# We added the following when we switched minifyEnabled on. Probably because we
|
||||||
|
# ran the app and hit problems...
|
||||||
|
|
||||||
|
-keep class com.facebook.react.bridge.CatalystInstanceImpl { *; }
|
||||||
|
-keep class com.facebook.react.bridge.ExecutorToken { *; }
|
||||||
|
-keep class com.facebook.react.bridge.JavaScriptExecutor { *; }
|
||||||
|
-keep class com.facebook.react.bridge.ModuleRegistryHolder { *; }
|
||||||
|
-keep class com.facebook.react.bridge.ReadableType { *; }
|
||||||
|
-keep class com.facebook.react.bridge.queue.NativeRunnable { *; }
|
||||||
|
-keep class com.facebook.react.devsupport.** { *; }
|
||||||
-keep class org.webrtc.** { *; }
|
-keep class org.webrtc.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.facebook.react.devsupport.**
|
||||||
-dontwarn com.google.appengine.**
|
-dontwarn com.google.appengine.**
|
||||||
|
-dontwarn com.squareup.okhttp.**
|
||||||
-dontwarn javax.servlet.**
|
-dontwarn javax.servlet.**
|
||||||
|
|
||||||
# Crashlytics
|
# ^^^ We added the above when we switched minifyEnabled on.
|
||||||
-keepattributes *Annotation*
|
|
||||||
-keepattributes SourceFile,LineNumberTable
|
|
||||||
-keep public class * extends java.lang.Exception
|
|
||||||
|
|
Loading…
Reference in New Issue