# The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\proguard-files\proguard-android-optimize.txt-4.1.3 # This is a configuration file for ProGuard. # http://proguard.sourceforge.net/index.html#manual/usage.html # # Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with # the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and # will be ignored by new version of the Android plugin for Gradle. # Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file # instead of this one, which turns off the optimization flags. # Adding optimization introduces certain risks, since for example not all optimizations performed by # ProGuard works on all versions of Dalvik. The following flags turn off various optimizations # known to have issues, but the list may not be complete or up to date. (The "arithmetic" # optimization can be used if you are only targeting Android 2.0 or later.) Make sure you test # thoroughly if you go this route. -optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/* -optimizationpasses 5 -allowaccessmodification -dontusemixedcaseclassnames -dontskipnonpubliclibraryclasses -verbose # Preserve some attributes that may be required for reflection. -keepattributes *Annotation*,Signature,InnerClasses,EnclosingMethod -keep public class com.google.vending.licensing.ILicensingService -keep public class com.android.vending.licensing.ILicensingService -keep public class com.google.android.vending.licensing.ILicensingService -dontnote com.android.vending.licensing.ILicensingService -dontnote com.google.vending.licensing.ILicensingService -dontnote com.google.android.vending.licensing.ILicensingService # For native methods, see http://proguard.sourceforge.net/manual/examples.html#native -keepclasseswithmembernames,includedescriptorclasses class * { native ; } # Keep setters in Views so that animations can still work. -keepclassmembers public class * extends android.view.View { void set*(***); *** get*(); } # We want to keep methods in Activity that could be used in the XML attribute onClick. -keepclassmembers class * extends android.app.Activity { public void *(android.view.View); } # For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations -keepclassmembers enum * { public static **[] values(); public static ** valueOf(java.lang.String); } -keepclassmembers class * implements android.os.Parcelable { public static final ** CREATOR; } # Preserve annotated Javascript interface methods. -keepclassmembers class * { @android.webkit.JavascriptInterface ; } # The support libraries contains references to newer platform versions. # Don't warn about those in case this app is linking against an older # platform version. We know about them, and they are safe. -dontnote android.support.** -dontnote androidx.** -dontwarn android.support.** -dontwarn androidx.** # This class is deprecated, but remains for backward compatibility. -dontwarn android.util.FloatMath # Understand the @Keep support annotation. -keep class android.support.annotation.Keep -keep class androidx.annotation.Keep -keep @android.support.annotation.Keep class * {*;} -keep @androidx.annotation.Keep class * {*;} -keepclasseswithmembers class * { @android.support.annotation.Keep ; } -keepclasseswithmembers class * { @androidx.annotation.Keep ; } -keepclasseswithmembers class * { @android.support.annotation.Keep ; } -keepclasseswithmembers class * { @androidx.annotation.Keep ; } -keepclasseswithmembers class * { @android.support.annotation.Keep (...); } -keepclasseswithmembers class * { @androidx.annotation.Keep (...); } # These classes are duplicated between android.jar and org.apache.http.legacy.jar. -dontnote org.apache.http.** -dontnote android.net.http.** # These classes are duplicated between android.jar and core-lambda-stubs.jar. -dontnote java.lang.invoke.** # End of content from F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\proguard-files\proguard-android-optimize.txt-4.1.3 # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\proguard-rules.pro -printconfiguration build/outputs/fullProguardConfig.pro -dontshrink # End of content from F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\proguard-rules.pro # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\aapt_proguard_file\release\aapt_rules.txt # Generated by the gradle plugin -keep class com.donut.plugin.activity.MainProcessActivity { (...); } -keep class com.donut.plugin.activity.PermissionsActivity { (...); } # End of content from F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\aapt_proguard_file\release\aapt_rules.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\proguard.txt # Copyright (C) 2015 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # CoordinatorLayout resolves the behaviors of its child components with reflection. -keep public class * extends androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior { public (android.content.Context, android.util.AttributeSet); public (); } # Make sure we keep annotations for CoordinatorLayout's DefaultBehavior -keepattributes *Annotation* # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\95ca15ec93309cc9cc950afc1dc3a51c\recyclerview-1.0.0\proguard.txt # Copyright (C) 2015 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # When layoutManager xml attribute is used, RecyclerView inflates #LayoutManagers' constructors using reflection. -keep public class * extends androidx.recyclerview.widget.RecyclerView$LayoutManager { public (android.content.Context, android.util.AttributeSet, int, int); public (); } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\95ca15ec93309cc9cc950afc1dc3a51c\recyclerview-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\d37116f996a98f4be2a59256b515c2fa\appcompat-1.0.0\proguard.txt # Copyright (C) 2018 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Ensure that reflectively-loaded inflater is not obfuscated. This can be # removed when we stop supporting AAPT1 builds. -keepnames class androidx.appcompat.app.AppCompatViewInflater # aapt is not able to read app::actionViewClass and app:actionProviderClass to produce proguard # keep rules. Add a commonly used SearchView to the keep list until b/109831488 is resolved. -keep class androidx.appcompat.widget.SearchView { (...); } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\d37116f996a98f4be2a59256b515c2fa\appcompat-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\dc421bcf41a01193e53cc2504ee980f1\vectordrawable-animated-1.0.0\proguard.txt # Copyright (C) 2016 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # keep setters in VectorDrawables so that animations can still work. -keepclassmembers class androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$* { void set*(***); *** get*(); } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\dc421bcf41a01193e53cc2504ee980f1\vectordrawable-animated-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\971baffc4a75353005e06f53e84ef35d\transition-1.0.0\proguard.txt # Copyright (C) 2017 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Keep a field in transition that is used to keep a reference to weakly-referenced object -keepclassmembers class androidx.transition.ChangeBounds$* extends android.animation.AnimatorListenerAdapter { androidx.transition.ChangeBounds$ViewBounds mViewBounds; } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\971baffc4a75353005e06f53e84ef35d\transition-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5795b53fd7da81afcd5019f1bd020468\coordinatorlayout-1.0.0\proguard.txt # Copyright (C) 2016 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # CoordinatorLayout resolves the behaviors of its child components with reflection. -keep public class * extends androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior { public (android.content.Context, android.util.AttributeSet); public (); } # Make sure we keep annotations for CoordinatorLayout's DefaultBehavior and ViewPager's DecorView -keepattributes *Annotation* # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5795b53fd7da81afcd5019f1bd020468\coordinatorlayout-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\27b2ffeb0a208cab6bd365fe9336b54b\lifecycle-process-2.2.0\proguard.txt # this rule is need to work properly when app is compiled with api 28, see b/142778206 -keepclassmembers class * extends androidx.lifecycle.EmptyActivityLifecycleCallbacks { *; } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\27b2ffeb0a208cab6bd365fe9336b54b\lifecycle-process-2.2.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\22780b7a3557170bfcf46f23dca138e6\core-1.1.0\proguard.txt # aapt2 is not (yet) keeping FQCNs defined in the appComponentFactory attribute -keep class androidx.core.app.CoreComponentFactory # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\22780b7a3557170bfcf46f23dca138e6\core-1.1.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\8a396767ab58f55a34f93b5890deb0ba\lifecycle-runtime-2.2.0\proguard.txt -keepattributes *Annotation* -keepclassmembers enum androidx.lifecycle.Lifecycle$Event { ; } -keep !interface * implements androidx.lifecycle.LifecycleObserver { } -keep class * implements androidx.lifecycle.GeneratedAdapter { (...); } -keepclassmembers class ** { @androidx.lifecycle.OnLifecycleEvent *; } # this rule is need to work properly when app is compiled with api 28, see b/142778206 -keepclassmembers class androidx.lifecycle.ReportFragment$LifecycleCallbacks { *; } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\8a396767ab58f55a34f93b5890deb0ba\lifecycle-runtime-2.2.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\b1d29a84c883aa1e9ef79f7a6275abb3\lifecycle-viewmodel-savedstate-1.0.0\proguard.txt -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel { (androidx.lifecycle.SavedStateHandle); } -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel { (android.app.Application,androidx.lifecycle.SavedStateHandle); } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\b1d29a84c883aa1e9ef79f7a6275abb3\lifecycle-viewmodel-savedstate-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\8508e2ba9e814e78a2b0790b0a076590\savedstate-1.0.0\proguard.txt # Copyright (C) 2019 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -keepclassmembers,allowobfuscation class * implements androidx.savedstate.SavedStateRegistry$AutoRecreated { (); } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\8508e2ba9e814e78a2b0790b0a076590\savedstate-1.0.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\fa60316c892666e6488d6b5af63f73db\lifecycle-viewmodel-2.2.0\proguard.txt -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel { (); } -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel { (android.app.Application); } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\fa60316c892666e6488d6b5af63f73db\lifecycle-viewmodel-2.2.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ba71d9bb5f4d44b76be2f931d279b0e8\versionedparcelable-1.1.0\proguard.txt -keep public class * implements androidx.versionedparcelable.VersionedParcelable -keep public class android.support.**Parcelizer { *; } -keep public class androidx.**Parcelizer { *; } -keep public class androidx.versionedparcelable.ParcelImpl # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ba71d9bb5f4d44b76be2f931d279b0e8\versionedparcelable-1.1.0\proguard.txt # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\411d427d2612b4c03a26177668845b48\rules\lib\META-INF\proguard\androidx-annotations.pro -keep,allowobfuscation @interface androidx.annotation.Keep -keep @androidx.annotation.Keep class * {*;} -keepclasseswithmembers class * { @androidx.annotation.Keep ; } -keepclasseswithmembers class * { @androidx.annotation.Keep ; } -keepclasseswithmembers class * { @androidx.annotation.Keep (...); } # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\411d427d2612b4c03a26177668845b48\rules\lib\META-INF\proguard\androidx-annotations.pro # The proguard configuration file for the following section is -ignorewarnings -keep class **.R -keep class **.R$* {*;} # End of content from