2022-03-02 01:40:53 +08:00
|
|
|
# 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.
|
2022-04-03 23:25:23 +08:00
|
|
|
-keepattributes SourceFile,LineNumberTable
|
2022-03-02 01:40:53 +08:00
|
|
|
|
|
|
|
# If you keep the line number information, uncomment this to
|
|
|
|
# hide the original source file name.
|
2022-04-03 23:25:23 +08:00
|
|
|
-renamesourcefileattribute SourceFile
|
2022-03-29 20:32:17 +08:00
|
|
|
|
|
|
|
-dontobfuscate
|
|
|
|
|
|
|
|
# Disable ServiceLoader reproducibility-breaking optimizations
|
|
|
|
-keep class kotlinx.coroutines.CoroutineExceptionHandler
|
2022-03-30 14:38:47 +08:00
|
|
|
-keep class kotlinx.coroutines.internal.MainDispatcherFactory
|
|
|
|
|
|
|
|
# ksoap2 XmlPullParser confusion
|
|
|
|
-dontwarn org.xmlpull.v1.XmlPullParser
|
|
|
|
-dontwarn org.xmlpull.v1.XmlSerializer
|
2022-05-07 00:28:17 +08:00
|
|
|
-keep class org.xmlpull.v1.* {*;}
|
|
|
|
|
|
|
|
# Rome
|
2023-01-01 11:18:35 +08:00
|
|
|
-keep class com.rometools.** { *; }
|
|
|
|
|
|
|
|
# Provider API
|
2024-06-02 19:34:10 +08:00
|
|
|
-keep class me.ash.reader.** { *; }
|
2024-01-31 00:13:35 +08:00
|
|
|
|
|
|
|
# https://github.com/flutter/flutter/issues/127388
|
|
|
|
-dontwarn org.kxml2.io.KXml**
|
|
|
|
|
|
|
|
# https://youtrack.jetbrains.com/issue/KTOR-5528
|
|
|
|
-dontwarn org.slf4j.impl.StaticLoggerBinder
|