12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169 |
- # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\duoduan_reader_test\chajian\android\app\build\intermediates\proguard-files\proguard-android.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.
- # Optimization is turned off by default. Dex does not like code run
- # through the ProGuard optimize steps (and performs some
- # of these optimizations on its own).
- # Note that if you want to enable optimization, you cannot just
- # include optimization flags in your own project configuration file;
- # instead you will need to point to the
- # "proguard-android-optimize.txt" file instead of this one from your
- # project.properties file.
- -dontoptimize
- -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 <methods>;
- }
- # 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 <methods>;
- }
- # 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 <methods>;
- }
- -keepclasseswithmembers class * {
- @androidx.annotation.Keep <methods>;
- }
- -keepclasseswithmembers class * {
- @android.support.annotation.Keep <fields>;
- }
- -keepclasseswithmembers class * {
- @androidx.annotation.Keep <fields>;
- }
- -keepclasseswithmembers class * {
- @android.support.annotation.Keep <init>(...);
- }
- -keepclasseswithmembers class * {
- @androidx.annotation.Keep <init>(...);
- }
- # 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\duoduan_reader_test\chajian\android\app\build\intermediates\proguard-files\proguard-android.txt-4.1.3
- # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\duoduan_reader_test\chajian\android\app\proguard-rules.pro
- -keep class com.tencent.bugly.** {
- *;
- }
- -dontwarn com.tencent.bugly.**
- -keep class com.tencent.tinker.** {
- *;
- }
- -keep class sun.** { *;}
- -dontwarn sun.**
- -keep class saaa.xweb.** {*;}
- -dontwarn saaa.xweb.**
- -dontwarn com.tencent.rtmp.**
- -dontwarn com.tencent.luggage.**
- -dontwarn com.tencent.mm.**
- -dontwarn com.google.android.material.snackbar.**
- -dontwarn com.tencent.neattextview.textview.view.**
- -dontwarn junit.framework.**
- -dontwarn com.jeremyliao.liveeventbus.**
- -keep class com.jeremyliao.liveeventbus.** { *; }
- -keep class androidx.lifecycle.** { *; }
- -keep class androidx.arch.core.** { *; }
- # 保留枚举类不被混淆
- -keepclassmembers enum * {
- public static **[] values();
- public static ** valueOf(java.lang.String);
- }
- -keep class com.lenovo.lsf.lenovoid.ui.widget.**{*;}
- -keep class com.lenovo.intermodal.**{*;}
- -keep class com.lenovo.intermodal.bean.**{*;}
- -keep class com.lenovo.intermodal.api.**{*;}
- -keep class com.lenovo.intermodal.request.**{*;}
- -keep public class android.net.http.SslError
- -keep public class android.webkit.WebViewClient
- -dontwarn android.webkit.WebView
- -dontwarn android.net.http.SslEr
- -dontwarn android.webkit.WebViewClient
- -dontwarn com.alipay.**
- -keep class com.alipay.**{*;}
- -dontwarn com.google.zxing.**
- -keep class com.google.zxing.**{*;}
- -keep public class * extends android.app.Activity
- -keep public class * extends android.app.Application
- -keep public class * extends android.app.Service
- -keep public class * extends android.content.BroadcastReceiver
- -keep public class * extends android.content.ContentProvider
- -keepclassmembers public class * extends android.view.View
- -keepclassmembers public class * extends android.view.ViewGroup
- # End of content from F:\Work_Space\Wechat_workSpace\duoduan_reader_test\chajian\android\app\proguard-rules.pro
- # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\duoduan_reader_test\chajian\android\app\build\intermediates\aapt_proguard_file\arm32Release\aapt_rules.txt
- -keep class androidx.core.app.CoreComponentFactory { <init>(); }
- -keep class androidx.lifecycle.ProcessLifecycleOwnerInitializer { <init>(); }
- -keep class com.alipay.sdk.app.H5AuthActivity { <init>(); }
- -keep class com.alipay.sdk.app.H5PayActivity { <init>(); }
- -keep class com.donut.plugin.activity.AliPayActivity { <init>(); }
- -keep class com.donut.plugin.activity.LoginActivity { <init>(); }
- -keep class com.edufound.reader.DemoApplication { <init>(); }
- -keep class com.edufound.reader.ui.MainActivity { <init>(); }
- -keep class com.edufound.reader.wxapi.WXEntryActivity { <init>(); }
- -keep class com.edufound.reader.wxapi.WXPayEntryActivity { <init>(); }
- -keep class com.lenovo.intermodal.ui.PayActionActivity { <init>(); }
- -keep class com.lenovo.lsf.account.PsUserSettingActivity { <init>(); }
- -keep class com.lenovo.lsf.account.qrcode.ui.CaptureActivity { <init>(); }
- -keep class com.lenovo.lsf.account.qrcode.ui.WebLoginConfirmActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.AccountBindingActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.AccountBindingRegistActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.AccountBindingRegistFinalActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.AccountH5InfoActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.AccountInfoActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.ActivationbyMailActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.ActivationbyPhoneActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.ChangePasswordCompleteActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.ChangePasswordFirstActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.CountryCodeH5Activity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.EmailRegistedDoneActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.FindPasswordActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.FindPasswordConfirmActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.FindPasswordFinalActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.IdAuthActivty { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.IdAuthActivtySecond { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.IncludeAreaCodeActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.MyselfInformationActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.PreAccountBindingActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.PsLoginActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.PsLoginCommonActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.PsLoginPhoneCodeActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.PwdGuideActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RealnameAuthActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RealnameAuthSecondActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RegistByEmailActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RegistByEmailSecondActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RegistByEmailThirdActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivitySecondStep { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.RegistByPhoneActivityThirdStep { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.SafeQuestionActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.ServiceProtocolActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.SetSafemailOrBindPhoneNumActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.SetSafemailOrBindPhoneNumConfirmActivity { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepForth { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepSecond { <init>(); }
- -keep class com.lenovo.lsf.lenovoid.ui.UpdateAccountNameActivityStepThird { <init>(); }
- -keep class com.luck.picture.lib.basic.PictureFileProvider { <init>(); }
- -keep class com.luck.picture.lib.basic.PictureSelectorSupporterActivity { <init>(); }
- -keep class com.luck.picture.lib.basic.PictureSelectorTransparentActivity { <init>(); }
- -keep class com.luck.picture.lib.service.ForegroundService { <init>(); }
- -keep class com.tencent.luggage.crash.WxaCrashUploaderService { <init>(); }
- -keep class com.tencent.luggage.jsapi.file.LuggageOpenDocFileProvider { <init>(); }
- -keep class com.tencent.luggage.opensdk.OpenSDKApiContentProvider { <init>(); }
- -keep class com.tencent.luggage.sdk.customize.impl.FullSdkExternalToolsHelper$SimpleWebViewActivity { <init>(); }
- -keep class com.tencent.luggage.storage.StandaloneCriticalDataProvider { <init>(); }
- -keep class com.tencent.luggage.ui.BlankActivity { <init>(); }
- -keep class com.tencent.luggage.ui.OpenSDKBridgedActivity { <init>(); }
- -keep class com.tencent.luggage.ui.WxaAlertActivity { <init>(); }
- -keep class com.tencent.luggage.ui.WxaMusicActivity { <init>(); }
- -keep class com.tencent.luggage.ui.WxaPreviewImageUI { <init>(); }
- -keep class com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity0 { <init>(); }
- -keep class com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity1 { <init>(); }
- -keep class com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity2 { <init>(); }
- -keep class com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity3 { <init>(); }
- -keep class com.tencent.luggage.wxa.SaaA.app.SaaAContainerActivity4 { <init>(); }
- -keep class com.tencent.luggage.wxa.WxaFileExportContentProvider { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService0 { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService1 { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService2 { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService3 { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCContainerService4 { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.app.WxaIPCMainService { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.container.WxaContainerToFrontProxyActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.WxaProfileActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaAuthorizeDetailActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaLaunchProxyActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaScanCodeActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSettingActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaSubscribeMsgManageActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaUserInfoAuthorizeActivity { <init>(); }
- -keep class com.tencent.luggage.wxa.standalone_open_runtime.ui.patched.PatchedWxaWebViewActivity { <init>(); }
- -keep class com.tencent.luggage.wxaapi.internal.ui.WxaScanResultDelegateActivity { <init>(); }
- -keep class com.tencent.mm.plugin.appbrand.jsapi.lbs.LbsProxyActivity { <init>(); }
- -keep class com.tencent.mm.plugin.appbrand.jsapi.nfc.hce.HCEService { <init>(); }
- -keep class com.tencent.mm.ui.AlertActivity { <init>(); }
- -keep class android.widget.Space { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.app.AlertController$RecycleListView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.view.menu.ActionMenuItemView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.view.menu.ExpandedMenuView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.view.menu.ListMenuItemView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ActionBarContainer { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ActionBarContextView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ActionBarOverlayLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ActionMenuView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ActivityChooserView$InnerLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.AlertDialogLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.AppCompatTextView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ButtonBarLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ContentFrameLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.DialogTitle { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.FitWindowsFrameLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.FitWindowsLinearLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.SearchView$SearchAutoComplete { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.Toolbar { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.appcompat.widget.ViewStubCompat { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.constraintlayout.widget.ConstraintLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.coordinatorlayout.widget.CoordinatorLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.core.widget.NestedScrollView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class androidx.recyclerview.widget.RecyclerView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.google.android.material.internal.BaselineLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.google.android.material.internal.CheckableImageButton { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.google.android.material.internal.NavigationMenuItemView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.google.android.material.internal.NavigationMenuView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.google.android.material.snackbar.Snackbar$SnackbarLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.google.android.material.snackbar.SnackbarContentLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.lenovo.intermodal.ui.CheckView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.lenovo.lsf.account.qrcode.view.ViewfinderView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.lenovo.lsf.lenovoid.ui.widget.LenovoIDVerificationView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.magical.MagicalView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.photoview.PhotoView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.BottomNavBar { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.CompleteSelectView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.MarqueeTextView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.MediumBoldTextView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.PreviewBottomNavBar { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.PreviewTitleBar { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.RecyclerPreloadView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.RoundCornerRelativeLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.SquareRelativeLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.luck.picture.lib.widget.TitleBar { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.makeramen.roundedimageview.RoundedImageView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.luggage.jsapi.login.face.FaceView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.luggage.opensdk.ui.QRCodeTransferQRDisplayWidget { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.luggage.scanner.ui.ViewfinderView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.luggage.setting.ui.TouchableLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.luggage.ui.WMPFQRLoginWidget { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.luggage.widget.SafeViewPager { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.msgsubscription.ui.MaxRecyclerView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.picker.base.view.WheelView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.debugger.RemoteDebugMoveView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.keylogger.stepview.VerticalStepView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.keylogger.stepview.VerticalStepViewIndicator { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.page.AppBrandActionMultipleHeaderView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.page.AppBrandActionSingleHeaderView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.page.capsulebar.AppBrandCapsuleBarPlaceHolderView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.phonenumber.widget.MMFormVerifyCodeInputView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.ui.AppBrandCircleProgressView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.ui.MaxHeightRecyclerView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.widget.AppBrandActionBarCustomImageView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.widget.actionbar.AppBrandCapsuleHomeButton { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.widget.actionbar.AppBrandOptionButton { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.widget.dialog.AppBrandDialogContentView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.widget.music.MusicSeekBar { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.widget.sms.EditVerifyCodeView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.plugin.appbrand.widget.sms.VerifyCodeEditText { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.base.AuthorizeItemListView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.base.CustomScrollView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.base.MMClearEditText { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.base.MMFormInputView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.AlbumChooserView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.EllipsizeLayout { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.MMSwitchBtn { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.ThreeDotsLoadingView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.imageview.WeImageView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.listview.PullDownListView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.loading.MMProgressLoading { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.picker.WheelView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.snackbar.SnackContainer { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tencent.mm.ui.widget.textview.MMAutoAdjustTextView { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tenpay.android.wechat.MyKeyboardWindow { <init>(android.content.Context, android.util.AttributeSet); }
- -keep class com.tenpay.android.wechat.TenPayRelativeLayout { <init>(android.content.Context, android.util.AttributeSet); }
- # End of content from F:\Work_Space\Wechat_workSpace\duoduan_reader_test\chajian\android\app\build\intermediates\aapt_proguard_file\arm32Release\aapt_rules.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\77758c8b4e784e142144d7d34461d5fd\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.0\proguard.txt
- # wmpf-sdk
- -keep class h.h.h.h.** {*;}
- -keep class i.h.h.** {*;}
- -keep class j.h.** {*;}
- -keep class com.eclipsesource.** {*;}
- -keep class com.esafirm.imagepicker.** {*;}
- -keep class com.github.henryye.nativeiv.** {*;}
- -keep class com.google.h.** {*;}
- -keep class com.ilink.interfaces.** {*;}
- -keep class com.tencent.ilink.interfaces.** {*;}
- -keepattributes JgClassChecked
- -keepattributes JgMethodChecked
- -keep class com.jg.** {*;}
- -keep class com.tencent.h.** {*;}
- -keep class com.tencent.i.h.** {*;}
- -keep class com.tencent.ilink.interfaces.**{*;}
- -keep class com.tencent.ilink.dev.** {*;}
- -keep class com.tencent.ilink.network.**{*;}
- -keep class com.tencent.ilink.tdi.**{*;}
- -keep class com.tencent.ilinknetwork.** {*;}
- -keep class com.tencent.ilinkservice.** {*;}
- -keep class com.tencent.j.** {*;}
- -keep class com.tencent.k.h.h.** {*;}
- -keep class com.tencent.liteav.** {*;}
- -keep class com.tencent.luggage.** {*;}
- -keep class com.tencent.magicbrush.** {*;}
- -keep class com.tencent.mars.** {*;}
- -keep class com.tencent.mm.** {*;}
- -keep class com.tencent.qbar.** {*;}
- -keep class com.tencent.qqmusic.mediaplayer.** {*;}
- -keep class com.tencent.rtmp.** {*;}
- # for ad & oaid
- -keep class com.tencent.tfd.sdk.wxa.**{*;}
- -keep class com.tencent.trtc.** {*;}
- -keep class com.tencent.ugc.** {*;}
- -keep class com.tencent.wechat.tdi.** {*;}
- -keep class com.tencent.weui.base.preference.** {*;}
- -keep class com.tencent.xweb.** {*;}
- -keep class com.tencent.neattextview.**{*;}
- # TdiReportService embed包未调用
- -dontwarn com.tencent.luggage.o.**
- # 外界无需使用
- -dontwarn com.jg.**
- -dontwarn com.tencent.luggage.login.device.WxaILinkManager**
- -dontwarn com.tencent.xweb.pinus.sdk.library_loader.LegacyLinker
- -dontwarn com.tencent.mars.ilink.comm.NetStatusUtil
- # R文件资源
- -dontwarn **.R$**
- # x5 com.tencent.smtt.export.external.DexLoader: can't find referenced class dalvik.system.VMStack
- -dontwarn com.tencent.smtt.**
- # reduce compile log
- -dontnote com.tencent.smtt.**
- -dontnote com.tencent.wechat.**
- -dontnote com.tencent.mm.**
- -dontnote com.tencent.luggage.**
- -dontnote com.tencent.magicbrush.**
- -dontnote com.tencent.ilinkservice.**
- -dontnote com.tencent.ilinknetwork.**
- -dontnote org.xwalk.core.**
- -dontnote com.tencent.xweb.**
- -dontnote com.tencent.ilink.dev.**
- -dontnote com.google.protobuf.**
- -dontnote com.tencent.h.**
- -dontnote com.tencent.i.**
- -dontnote com.tencent.j.**
- -dontnote com.tencent.k.**
- # for tencent map sdk aar
- -dontwarn com.tencent.tencentmap.**
- -dontwarn com.tencent.map.**
- -dontwarn c.t.m.g.**
- #
- # soso location sdk
- #
- -keep class com.tencent.map.geolocation.** {
- *;
- }
- -keep class c.t.** {
- *;
- }
- -keep class com.tencent.tencentmap.lbssdk.sapp.service.**{
- *;
- }
- -keep class navsns.** {
- *;
- }
- -dontwarn com.tencent.map.**
- -dontwarn c.t.**
- #
- # p_location support
- #
- -dontwarn com.google.android.maps.**
- -dontwarn com.nokia.android.maps.**
- -keep class com.google.android.maps.** {
- *;
- }
- -keep class com.tencent.mapsdk.** {
- *;
- }
- -keep class com.tencent.tencentmap.** {
- *;
- }
- -keep class com.tencent.map.** {
- *;
- }
- -keep class com.nokia.android.maps.** {
- *;
- }
- -keep class com.here.android.mapping.** {
- *;
- }
- -keep class com.nokia.maps.** {
- *;
- }
- -keep class com.tencent.live2.** {
- *;
- }
- -keep class com.h.h.h.h.h.** {
- *;
- }
- # rules for library consumer
- -keepclassmembers class android.support.media.ExifInterface {
- *** TAG_*;
- }
- -keep class androidx.lifecycle.**
- -keepclassmembers class androidx.lifecycle.Lifecycle$State { *; }
- -keepclassmembers class androidx.lifecycle.Lifecycle$Event { *; }
- -keep class com.tencent.nativecrash.** {
- *;
- }
- -dontwarn com.tencent.magicbrush.**
- -dontwarn com.github.henryye.nativeiv.**
- -keep class org.xwalk.core.** { *; }
- # tbs SDK内部proguard,微信不对其进行proguard
- -keep class com.tencent.smtt.** {*;}
- -keep class kotlin.reflect.** {
- *;
- }
- -keep class kotlin.Metadata
- #RxJava
- -dontwarn sun.misc.**
- -keep class rx.schedulers.Schedulers {
- public static <methods>;
- }
- -keep class rx.schedulers.ImmediateScheduler {
- public <methods>;
- }
- -keep class rx.schedulers.TestScheduler {
- public <methods>;
- }
- -keep class rx.schedulers.Schedulers {
- public static ** test();
- }
- -keep class rx.internal.util.unsafe.** { *; }
- -keep class com.tencent.wxcloud.* {*;}
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\77758c8b4e784e142144d7d34461d5fd\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.0\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\3cdffa81e271a8c6759ae5e5d6a1b638\wxf1a06dafa3350688-1.0.47\proguard.txt
- -keepclassmembers class * {
- @com.tencent.luggage.wxa.SaaA.plugin.SyncJsApi *;
- @com.tencent.luggage.wxa.SaaA.plugin.AsyncJsApi *;
- }
- -keep class com.donut.plugin.* {*;}
- # 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
- # 屏蔽警告
- -ignorewarnings
- # 指定混淆是采用的算法,后面的参数是一个过滤器
- # 这个过滤器是谷歌推荐的算法,一般不做更改
- -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
- # 保护代码中的Annotation不被混淆
- -keepattributes *Annotation*
- # 避免混淆泛型, 这在JSON实体映射时非常重要
- -keepattributes Signature
- # 抛出异常时保留代码行号
- -keepattributes SourceFile,LineNumberTable
- #优化时允许访问并修改有修饰符的类和类的成员,这可以提高优化步骤的结果。
- # 比如,当内联一个公共的getter方法时,这也可能需要外地公共访问。
- # 虽然java二进制规范不需要这个,要不然有的虚拟机处理这些代码会有问题。当有优化和使用-repackageclasses时才适用。
- #指示语:不能用这个指令处理库中的代码,因为有的类和类成员没有设计成public ,而在api中可能变成public
- -allowaccessmodification
- #当有优化和使用-repackageclasses时才适用。
- #-repackageclasses com.test
- # 混淆时记录日志(打印混淆的详细信息)
- # 这句话能够使我们的项目混淆后产生映射文件
- # 包含有类名->混淆后类名的映射关系filename.txt
- ##-classobfuscationdictionary filename.txt
- ##-packageobfuscationdictionary f
- #-obfuscationdictionary ilename.txt
- -verbose
- -keep class .R -keepclasseswithmembers class *.R$* { public static <fields>;}
- # 保留枚举类不被混淆
- -keepclassmembers enum * {
- public static **[] values();
- public static ** valueOf(java.lang.String);
- }
- -keep public class android.net.http.SslError
- -keep public class android.webkit.WebViewClient
- -dontwarn android.webkit.WebView
- -dontwarn android.net.http.SslEr
- -dontwarn android.webkit.WebViewClient
- #--------------ludp和oaid资源混淆忽略-------start#
- -keep class com.lenovo.lps.reaper.**{*;}
- -keep class com.lenovo.lps.reaper.*$* {
- *;
- }
- -dontwarn com.lenovo.lps.reaper.**
- -keep class org.greenrobot.greendao.**{*;}
- -keep class org.greenrobot.greendao.*$* {
- *;
- }
- -dontwarn org.greenrobot.greendao.**
- -keep class com.lenovo.lsf.gamesdk.oaid.** { *; }
- -keep class com.lenovo.lsf.gamesdk.oaid.*$* { *; }
- -keep class com.asus.msa.**{*;}
- -keep class com.asus.msa.*$* {
- *;
- }
- -keep class com.bun.**{*;}
- -keep class com.bun.*$* {
- *;
- }
- -keep class com.huawei.hms.ads.identifier.**{*;}
- -keep class com.huawei.hms.ads.identifier.*$* {
- *;
- }
- -keep class com.netease.nis.sdkwrapper.**{*;}
- -keep class com.netease.nis.sdkwrapper.*$* {
- *;
- }
- -keep class com.samsung.android.deviceidservice.**{*;}
- -keep class com.samsung.android.deviceidservice.*$* {
- *;
- }
- -keep class com.zui.**{*;}
- -keep class com.zui.*$* {
- *;
- }
- -dontwarn com.asus.msa.**
- -dontwarn com.bun.**
- -dontwarn com.huawei.hms.ads.identifier.**
- -dontwarn com.netease.nis.sdkwrapper.**
- -dontwarn com.samsung.android.deviceidservice.**
- -dontwarn com.zui.**
- #--------------ludp和oaid资源混淆忽略-------end#
- #--------------支付资源混淆忽略-------start#
- -keep class com.google.zxing.**{*;}
- -keep class com.google.zxing.*$* {
- *;
- }
- -dontwarn com.google.zxing.**
- -dontwarn com.alipay.**
- -keep class com.alipay.**{*;}
- -keep class org.json.alipay.**{*;}
- -keep class org.json.alipay.*$* {
- *;
- }
- -dontwarn org.json.alipay.**
- #--------------支付资源混淆忽略-------end#
- #--------------lenovoId源混淆忽略-------start#
- -keep class com.lenovo.lsf.**{*;}
- -keep class com.lenovo.lsf.*$* {
- *;
- }
- -dontwarn com.lenovo.lsf.**
- #--------------lenovoId源混淆忽略-------end#
- -keep class com.lenovo.intermodal.bean.**{*;}
- -keep class com.lenovo.intermodal.bean.*$* {
- *;
- }
- -dontwarn com.lenovo.intermodal.bean.**
- -keep class com.lenovo.intermodal.api.**{*;}
- -keep class com.lenovo.intermodal.api.*$* {
- *;
- }
- -dontwarn com.lenovo.intermodal.api.**
- -keep class com.lenovo.intermodal.request.**{*;}
- -keep class com.lenovo.intermodal.request.*$* {
- *;
- }
- -dontwarn com.lenovo.intermodal.request.**
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\3cdffa81e271a8c6759ae5e5d6a1b638\wxf1a06dafa3350688-1.0.47\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\621866830c2a55bb37fc2a527ab5c217\oaid_sdk_1.0.25-1.0.1\proguard.txt
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\621866830c2a55bb37fc2a527ab5c217\oaid_sdk_1.0.25-1.0.1\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\4becaa060ed76423a7befee9efa169b6\rules\lib\META-INF\com.android.tools\r8-from-1.6.0\coroutines.pro
- # Allow R8 to optimize away the FastServiceLoader.
- # Together with ServiceLoader optimization in R8
- # this results in direct instantiation when loading Dispatchers.Main
- -assumenosideeffects class kotlinx.coroutines.internal.MainDispatcherLoader {
- boolean FAST_SERVICE_LOADER_ENABLED return false;
- }
- -assumenosideeffects class kotlinx.coroutines.internal.FastServiceLoaderKt {
- boolean ANDROID_DETECTED return true;
- }
- # Disable support for "Missing Main Dispatcher", since we always have Android main dispatcher
- -assumenosideeffects class kotlinx.coroutines.internal.MainDispatchersKt {
- boolean SUPPORT_MISSING return false;
- }
- # Statically turn off all debugging facilities and assertions
- -assumenosideeffects class kotlinx.coroutines.DebugKt {
- boolean getASSERTIONS_ENABLED() return false;
- boolean getDEBUG() return false;
- boolean getRECOVER_STACK_TRACES() return false;
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\4becaa060ed76423a7befee9efa169b6\rules\lib\META-INF\com.android.tools\r8-from-1.6.0\coroutines.pro
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c76783494aa72ef510096c4ab7d4d79b\rules\lib\META-INF\proguard\coroutines.pro
- # ServiceLoader support
- -keepnames class kotlinx.coroutines.internal.MainDispatcherFactory {}
- -keepnames class kotlinx.coroutines.CoroutineExceptionHandler {}
- -keepnames class kotlinx.coroutines.android.AndroidExceptionPreHandler {}
- -keepnames class kotlinx.coroutines.android.AndroidDispatcherFactory {}
- # Most of volatile fields are updated with AFU and should not be mangled
- -keepclassmembernames class kotlinx.** {
- volatile <fields>;
- }
- # Same story for the standard library's SafeContinuation that also uses AtomicReferenceFieldUpdater
- -keepclassmembernames class kotlin.coroutines.SafeContinuation {
- volatile <fields>;
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c76783494aa72ef510096c4ab7d4d79b\rules\lib\META-INF\proguard\coroutines.pro
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c48fb3f89056062c8f6b93966b4e9962\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 <init>(android.content.Context, android.util.AttributeSet);
- public <init>();
- }
- # 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\c48fb3f89056062c8f6b93966b4e9962\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\5652fe044939afac696e5212d489c098\appcompat-1.1.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 { <init>(...); }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5652fe044939afac696e5212d489c098\appcompat-1.1.0\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ae8b3b45b1a84a0e12183bac9d85fb58\glide-4.10.0\proguard.txt
- -keep public class * implements com.bumptech.glide.module.GlideModule
- -keep class * extends com.bumptech.glide.module.AppGlideModule {
- <init>(...);
- }
- -keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
- **[] $VALUES;
- public *;
- }
- # Uncomment for DexGuard only
- #-keepresourcexmlelements manifest/application/meta-data@value=GlideModule
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ae8b3b45b1a84a0e12183bac9d85fb58\glide-4.10.0\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\22177b4a87e42e055801421a0c8e42fe\fragment-1.3.6\proguard.txt
- # Copyright (C) 2020 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.
- # The default FragmentFactory creates Fragment instances using reflection
- -if public class ** extends androidx.fragment.app.Fragment
- -keepclasseswithmembers,allowobfuscation public class <1> {
- public <init>();
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\22177b4a87e42e055801421a0c8e42fe\fragment-1.3.6\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\1d5bcf191b52ea6a4709d210d571d992\recyclerview-1.2.1\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 <init>(android.content.Context, android.util.AttributeSet, int, int);
- public <init>();
- }
- -keepclassmembers class androidx.recyclerview.widget.RecyclerView {
- public void suppressLayout(boolean);
- public boolean isLayoutSuppressed();
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\1d5bcf191b52ea6a4709d210d571d992\recyclerview-1.2.1\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\1e772b10a95c0d06d18a4e0dac29d7c0\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\1e772b10a95c0d06d18a4e0dac29d7c0\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\81c2daec20e6deafa720aeb1e6d3bb6c\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 <init>(android.content.Context, android.util.AttributeSet);
- public <init>();
- }
- # 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\81c2daec20e6deafa720aeb1e6d3bb6c\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\9749ff07cb00f1058b91eb351c811610\vectordrawable-animated-1.1.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\9749ff07cb00f1058b91eb351c811610\vectordrawable-animated-1.1.0\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\875d1a53d92bab814c4a62cdb669db73\core-1.3.2\proguard.txt
- # Never inline methods, but allow shrinking and obfuscation.
- -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.ViewCompat$Api* {
- <methods>;
- }
- -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.WindowInsetsCompat$Impl* {
- <methods>;
- }
- -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.WindowInsetsCompat$BuilderImpl* {
- <methods>;
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\875d1a53d92bab814c4a62cdb669db73\core-1.3.2\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c0afe2fa8363d58276a805c8a226b46f\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\c0afe2fa8363d58276a805c8a226b46f\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\fd2194e21c89eb3a9444b6a5174ac16f\lifecycle-runtime-2.3.1\proguard.txt
- -keepattributes *Annotation*
- -keepclassmembers enum androidx.lifecycle.Lifecycle$Event {
- <fields>;
- }
- -keep !interface * implements androidx.lifecycle.LifecycleObserver {
- }
- -keep class * implements androidx.lifecycle.GeneratedAdapter {
- <init>(...);
- }
- -keepclassmembers class ** {
- @androidx.lifecycle.OnLifecycleEvent *;
- }
- # this rule is need to work properly when app is compiled with api 28, see b/142778206
- # Also this rule prevents registerIn from being inlined.
- -keepclassmembers class androidx.lifecycle.ReportFragment$LifecycleCallbacks { *; }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\fd2194e21c89eb3a9444b6a5174ac16f\lifecycle-runtime-2.3.1\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\4444f5e4df00e8588fb73fa7d1972b74\lifecycle-viewmodel-savedstate-2.3.1\proguard.txt
- -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
- <init>(androidx.lifecycle.SavedStateHandle);
- }
- -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
- <init>(android.app.Application,androidx.lifecycle.SavedStateHandle);
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\4444f5e4df00e8588fb73fa7d1972b74\lifecycle-viewmodel-savedstate-2.3.1\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ed55b610ea72475d3dee35e477c45b45\savedstate-1.1.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 {
- <init>();
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ed55b610ea72475d3dee35e477c45b45\savedstate-1.1.0\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\8c5eafd09788ca4a490fa206d10159c8\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\8c5eafd09788ca4a490fa206d10159c8\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\97c780195d1f197b2832fa68287ce05f\lifecycle-viewmodel-2.3.1\proguard.txt
- -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
- <init>();
- }
- -keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
- <init>(android.app.Application);
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\97c780195d1f197b2832fa68287ce05f\lifecycle-viewmodel-2.3.1\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\3ea208510dffae1d128a2a9b43183060\mmkv-static-1.2.11\proguard.txt
- # Keep all native methods, their classes and any classes in their descriptors
- -keepclasseswithmembers,includedescriptorclasses class com.tencent.mmkv.** {
- native <methods>;
- long nativeHandle;
- private static *** onMMKVCRCCheckFail(***);
- private static *** onMMKVFileLengthError(***);
- private static *** mmkvLogImp(...);
- private static *** onContentChangedByOuterProcess(***);
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\3ea208510dffae1d128a2a9b43183060\mmkv-static-1.2.11\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5086601cd2831df2f5e5ab5eb25eb3dd\rules\lib\META-INF\proguard\androidx-annotations.pro
- -keep,allowobfuscation @interface androidx.annotation.Keep
- -keep @androidx.annotation.Keep class * {*;}
- -keepclasseswithmembers class * {
- @androidx.annotation.Keep <methods>;
- }
- -keepclasseswithmembers class * {
- @androidx.annotation.Keep <fields>;
- }
- -keepclasseswithmembers class * {
- @androidx.annotation.Keep <init>(...);
- }
- -keepclassmembers,allowobfuscation class * {
- @androidx.annotation.DoNotInline <methods>;
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5086601cd2831df2f5e5ab5eb25eb3dd\rules\lib\META-INF\proguard\androidx-annotations.pro
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\423a7284a33c7419ff053a653481b1ae\rules\lib\META-INF\proguard\okhttp3.pro
- # JSR 305 annotations are for embedding nullability information.
- -dontwarn javax.annotation.**
- # A resource is loaded with a relative path so the package of this class must be preserved.
- -keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
- # Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
- -dontwarn org.codehaus.mojo.animal_sniffer.*
- # OkHttp platform used only on JVM and when Conscrypt dependency is available.
- -dontwarn okhttp3.internal.platform.ConscryptPlatform
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\423a7284a33c7419ff053a653481b1ae\rules\lib\META-INF\proguard\okhttp3.pro
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0045779aa236f0dc1ed8ca5d3e4ddeb1\wcdb-android-1.1-19\proguard.txt
- # Keep all native methods, their classes and any classes in their descriptors
- -keepclasseswithmembers,includedescriptorclasses class com.tencent.wcdb.** {
- native <methods>;
- }
- # Keep all exception classes
- -keep class com.tencent.wcdb.**.*Exception
- # Keep classes referenced in JNI code
- -keep class com.tencent.wcdb.database.WCDBInitializationProbe { <fields>; }
- -keep,includedescriptorclasses class com.tencent.wcdb.database.SQLiteCustomFunction { *; }
- -keep class com.tencent.wcdb.database.SQLiteDebug$* { *; }
- -keep class com.tencent.wcdb.database.SQLiteCipherSpec { <fields>; }
- -keep interface com.tencent.wcdb.support.Log$* { *; }
- # Keep methods used as callbacks from JNI code
- -keep class com.tencent.wcdb.repair.RepairKit { int onProgress(java.lang.String, int, long); }
- -keep class com.tencent.wcdb.database.SQLiteConnection {
- void notifyCheckpoint(java.lang.String, int);
- void notifyChange(java.lang.String, java.lang.String, long[], long[], long[]);
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0045779aa236f0dc1ed8ca5d3e4ddeb1\wcdb-android-1.1-19\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\3936d8f955f8d04b649f6bd22e16d876\wechat-sdk-android-without-mta-6.7.9\proguard.txt
- -keep class com.tencent.mm.opensdk.** {
- *;
- }
- -keep class com.tencent.wxop.** {
- *;
- }
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\3936d8f955f8d04b649f6bd22e16d876\wechat-sdk-android-without-mta-6.7.9\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\485d3be581194f2ab167147f7541e6c7\roundedimageview-2.3.0\proguard.txt
- # Proguard configuration.
- -dontwarn com.squareup.okhttp.**
- # References to Picasso are okay if the consuming app doesn't use it
- -dontwarn com.squareup.picasso.Transformation
- # End of content from C:\Users\candy\.gradle\caches\transforms-2\files-2.1\485d3be581194f2ab167147f7541e6c7\roundedimageview-2.3.0\proguard.txt
- # The proguard configuration file for the following section is <unknown>
- -ignorewarnings
- # End of content from <unknown>
|