Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Fix module not working caused by R8
Browse files Browse the repository at this point in the history
  • Loading branch information
bin456789 committed May 3, 2019
1 parent 8e6502c commit b192352
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
minSdkVersion 14
// target Android P 之后,在安装过程中会对 APP 文件目录实行严格的 SELinux 限制,即使 makeWorldReadable,其他 APP 也无法读取插件的任何配置文件
targetSdkVersion 27
versionCode 32
versionCode 33
versionName = "0.0.${versionCode}"
archivesBaseName = "${applicationId}-${versionName}"
}
Expand Down
4 changes: 2 additions & 2 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

-keep class bin.xposed.Unblock163MusicClient.Main

-keepclassmembers class bin.xposed.Unblock163MusicClient.HookerDispatcher* {
void dispatch(**);
-keep class bin.xposed.Unblock163MusicClient.HookerDispatcher* {
void dispatch(*);
}

-keepclassmembernames class bin.xposed.Unblock163MusicClient.ui.SettingsActivity {
Expand Down

0 comments on commit b192352

Please sign in to comment.