123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950 |
- # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\reader_plugin\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\reader_plugin\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\reader_plugin\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.**
- -keep class com.umeng.** {*;}
- -keep class org.repackage.** {*;}
- -keep class com.uyumao.** { *; }
- -keepclassmembers class * {
- public <init> (org.json.JSONObject);
- }
- -keepclassmembers enum * {
- public static **[] values();
- public static ** valueOf(java.lang.String);
- }
- # End of content from F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\proguard-rules.pro
- # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\build\intermediates\aapt_proguard_file\arm64Release\aapt_rules.txt
- -keep class androidx.core.app.CoreComponentFactory { <init>(); }
- -keep class androidx.lifecycle.ProcessLifecycleOwnerInitializer { <init>(); }
- -keep class com.donut.plugin.activity.MainProcessActivity { <init>(); }
- -keep class com.donut.plugin.activity.PermissionsActivity { <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.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.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\reader_plugin\android\app\build\intermediates\aapt_proguard_file\arm64Release\aapt_rules.txt
- # The proguard configuration file for the following section is F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\consumer_proguard_dir\release\lib0\proguard.txt
- -keepclassmembers class * {
- @com.tencent.luggage.wxa.SaaA.plugin.SyncJsApi *;
- @com.tencent.luggage.wxa.SaaA.plugin.AsyncJsApi *;
- }
- -keep class com.umeng.** {*;}
- -keep class org.repackage.** {*;}
- -keep class com.uyumao.** { *; }
- -keepclassmembers class * {
- public <init> (org.json.JSONObject);
- }
- -keepclassmembers enum * {
- public static **[] values();
- public static ** valueOf(java.lang.String);
- }
- # End of content from F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\consumer_proguard_dir\release\lib0\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\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\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\proguard.txt
- # The proguard configuration file for the following section is C:\Users\candy\.gradle\caches\transforms-2\files-2.1\be3f2a193f1f77c265b2a3f459e62b6d\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\be3f2a193f1f77c265b2a3f459e62b6d\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\f043045d54bffdd1b5caf171dbc29daa\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\f043045d54bffdd1b5caf171dbc29daa\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\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 <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\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\0dcffdfc404f4682a054954dbf7981a8\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\0dcffdfc404f4682a054954dbf7981a8\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\e794c4cb1ad792875552281b1014391a\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\e794c4cb1ad792875552281b1014391a\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\67e4c234758b776c431dda14dc9c2690\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\67e4c234758b776c431dda14dc9c2690\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\9285bbefb9f5822a734fca7bf1c48994\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\9285bbefb9f5822a734fca7bf1c48994\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\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 <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\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\f9c3fce1be67a1b758038765bd038e01\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\f9c3fce1be67a1b758038765bd038e01\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\6cf906aef8b9fe103062eba58d8655f9\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\6cf906aef8b9fe103062eba58d8655f9\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\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\10871b9c4867a46b28f95909a3172d0b\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\10871b9c4867a46b28f95909a3172d0b\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\763087fddaa0cd90e24e3f067c243640\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\763087fddaa0cd90e24e3f067c243640\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\ebd7412fb56c61ea9bd02b9a98682104\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\ebd7412fb56c61ea9bd02b9a98682104\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\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\470c0436ee93fafc6e4c73f34f9f64f3\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\470c0436ee93fafc6e4c73f34f9f64f3\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\771aac8663bf2e740ff6df7974621803\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\771aac8663bf2e740ff6df7974621803\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\f9719975cbb7a0b9331491796feb4d39\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\f9719975cbb7a0b9331491796feb4d39\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\7121fd28d9947061a036b695040b4838\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\7121fd28d9947061a036b695040b4838\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\6f59535f0d8400337deaef1462168ba9\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\6f59535f0d8400337deaef1462168ba9\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\a52ad90237d8fa608abf3bf7a41a69bf\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\a52ad90237d8fa608abf3bf7a41a69bf\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\d106ea2d0468475a1882d50102bd0896\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\d106ea2d0468475a1882d50102bd0896\roundedimageview-2.3.0\proguard.txt
- # The proguard configuration file for the following section is <unknown>
- -ignorewarnings
- # End of content from <unknown>
|