forked from osudroid/osu-droid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
84 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
-flattenpackagehierarchy | ||
-allowaccessmodification | ||
-keepattributes Exceptions,InnerClasses,Signature,SourceFile,LineNumberTable | ||
-dontskipnonpubliclibraryclassmembers | ||
-ignorewarnings | ||
#kotlin | ||
-keep class kotlin.** { *; } | ||
-keep class kotlin.Metadata { *; } | ||
-dontwarn kotlin.** | ||
-keepclassmembers class **$WhenMappings { | ||
<fields>; | ||
} | ||
-keepclassmembers class kotlin.Metadata { | ||
public <methods>; | ||
} | ||
-assumenosideeffects class kotlin.jvm.internal.Intrinsics { | ||
static void checkParameterIsNotNull(java.lang.Object, java.lang.String); | ||
} | ||
|
||
-keepclasseswithmembernames class * { | ||
native <methods>; | ||
} | ||
|
||
-keepclassmembers class * extends android.app.Activity { | ||
public void *(android.view.View); | ||
} | ||
-keepclassmembers class * implements android.os.Parcelable { | ||
public static final android.os.Parcelable$Creator *; | ||
} | ||
-keep class **.R$* {*;} | ||
-keepclassmembers enum * { *;} | ||
|
||
#mars | ||
-keep class com.tencent.mars.** { *; } | ||
|
||
#rx | ||
-keep class rx.internal.util.unsafe.** { *; } | ||
-keep class android.databinding.** { *; } | ||
|
||
#Gson | ||
-keepclassmembers public class com.google.gson.** | ||
-keepclassmembers public class com.google.gson.** {public private protected *;} | ||
-keepclassmembers public class com.project.mocha_patient.login.SignResponseData { private *; } | ||
-keepclassmembers class sun.misc.Unsafe { *; } | ||
-keep @interface com.google.gson.annotations.SerializedName | ||
-keepclassmembers class * { | ||
@com.google.gson.annotations.SerializedName <fields>; | ||
} | ||
|
||
-keep class **$Properties {*;} | ||
|
||
#Qiniu SDK | ||
-keep class com.qiniu.**{*;} | ||
-keep class com.qiniu.**{public <init>();} | ||
-ignorewarnings | ||
|
||
#player | ||
-keep public class cn.jzvd.JZMediaSystem {*; } | ||
-keep public class cn.jzvd.demo.CustomMedia.CustomMedia {*; } | ||
-keep public class cn.jzvd.demo.CustomMedia.JZMediaIjk {*; } | ||
-keep public class cn.jzvd.demo.CustomMedia.JZMediaSystemAssertFolder {*; } | ||
|
||
-keep class tv.danmaku.ijk.media.player.** {*; } | ||
-dontwarn tv.danmaku.ijk.media.player.* | ||
-keep interface tv.danmaku.ijk.media.player.** { *; } | ||
|
||
# ProGuard configurations for Bugtags | ||
-keepattributes LineNumberTable,SourceFile | ||
-keep class com.bugtags.library.** {*;} | ||
-dontwarn com.bugtags.library.** | ||
-keep class io.bugtags.** {*;} | ||
-dontwarn io.bugtags.** | ||
-dontwarn org.apache.http.** | ||
-dontwarn android.net.http.AndroidHttpClient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters