44 lines
1.5 KiB
Prolog
44 lines
1.5 KiB
Prolog
# Add project specific ProGuard rules here.
|
||
# You can control the set of applied configuration files using the
|
||
# proguardFiles setting in build.gradle.
|
||
#
|
||
# For more details, see
|
||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||
|
||
# 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 *;
|
||
#}
|
||
|
||
# Uncomment this to preserve the line number information for
|
||
# debugging stack traces.
|
||
#-keepattributes SourceFile,LineNumberTable
|
||
|
||
# If you keep the line number information, uncomment this to
|
||
# hide the original source file name.
|
||
#-renamesourcefileattribute SourceFile
|
||
|
||
-keep class com.shockwave.**
|
||
-keep class com.luck.picture.lib.** { *; }
|
||
-keep class com.luck.lib.camerax.** { *; }
|
||
-dontwarn com.yalantis.ucrop**
|
||
-keep class com.yalantis.ucrop** { *; }
|
||
-keep interface com.yalantis.ucrop** { *; }
|
||
# 禁用 JPXDecode(JPEG2000),避免调用 JP2Decoder
|
||
-assumenosideeffects class com.tom_roush.pdfbox.filter.JPXFilter {
|
||
*;
|
||
}
|
||
# 防止缺少 gemalto 的 JP2Decoder 报错
|
||
-dontwarn com.gemalto.jp2.**
|
||
-dontwarn com.tom_roush.pdfbox.filter.JPXFilter
|
||
|
||
# 保留所有 Parcelable 类
|
||
-keep class * implements android.os.Parcelable { *; }
|
||
|
||
# 保留所有 Parcelable 的 CREATOR 字段
|
||
-keepclassmembers class * implements android.os.Parcelable {
|
||
public static final android.os.Parcelable$Creator *;
|
||
}
|