Simple-Commons/commons/proguard-rules.pro

27 lines
950 B
Prolog
Raw Normal View History

2017-10-19 19:44:29 +00:00
-renamesourcefileattribute SourceFile
-keepattributes SourceFile, LineNumberTable
2017-10-19 19:43:03 +00:00
-dontwarn com.bumptech.glide.load.engine.bitmap_recycle.LruBitmapPool
-dontwarn com.bumptech.glide.load.resource.bitmap.Downsampler
-dontwarn com.bumptech.glide.load.resource.bitmap.HardwareConfigState
-dontwarn com.bumptech.glide.manager.RequestManagerRetriever
2017-12-19 07:53:04 +00:00
-keep public class * extends java.lang.Exception
2017-12-31 08:43:47 +00:00
-keep class android.support.v7.widget.SearchView { *; }
2022-06-24 21:12:35 +00:00
-keep class com.simplemobiletools.commons.models.PhoneNumber
2017-12-31 08:43:47 +00:00
# Joda
-dontwarn org.joda.convert.**
-dontwarn org.joda.time.**
-keep class org.joda.time.** { *; }
-keep interface org.joda.time.** { *; }
-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.module.AppGlideModule
2019-10-04 09:46:53 +00:00
-keep class com.bumptech.glide.GeneratedAppGlideModuleImpl
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
**[] $VALUES;
public *;
}