version:1.0.0

update:更换网页,修改主页
bugfixes:修复推送和地图
This commit is contained in:
2024-07-13 10:06:30 +08:00
parent ef836554ad
commit 6142c737e1
36 changed files with 382 additions and 660 deletions

View File

@@ -85,6 +85,10 @@
-keep @androidx.annotation.Keep class *
-keepclassmembers class * {@androidx.annotation.Keep *;}
###排除所有注解类
-keep class * extends java.lang.annotation.Annotation { *; }
-keep interface * extends java.lang.annotation.Annotation { *; }
#不混淆View中的set***() 和 get***()方法 以保证属性动画正常工作 某个类中的某个方法不混淆
#自定义View的set get方法 和 构造方法不混淆
-keep public class * extends android.view.View{
@@ -213,8 +217,20 @@
#----------------------------- 第三方类库 ------------------------------------------
#Aria
-dontwarn com.arialyy.annotations.**
-keep class com.arialyy.annotations.**{*;}
-dontwarn com.arialyy.aria.**
-keep class com.arialyy.aria.**{*;}
-keep class **$$DownloadListenerProxy{ *; }
-keep class **$$UploadListenerProxy{ *; }
-keep class **$$DownloadGroupListenerProxy{ *; }
-keepclasseswithmembernames class * {
@Download.* <methods>;
@Upload.* <methods>;
@DownloadGroup.* <methods>;
}
#QWeather
-dontwarn com.qweather.sdk.**