├── ApkShelling-master └── ApkShelling-master │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── doc │ │ ├── apkShell-release.apk │ │ └── key.jks │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── xposed_init │ │ ├── java │ │ └── com │ │ │ └── sfysoft │ │ │ └── android │ │ │ └── xposed │ │ │ └── shelling │ │ │ ├── MainActivity.java │ │ │ ├── XposedEntry.java │ │ │ ├── adapter │ │ │ └── MainListViewAdapter.java │ │ │ ├── bean │ │ │ └── AppBean.java │ │ │ └── utils │ │ │ ├── CLogUtils.java │ │ │ ├── Constants.java │ │ │ ├── Key.java │ │ │ ├── PermissionUtils.java │ │ │ └── SpUtil.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_list_item.xml │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── README.md /ApkShelling-master/ApkShelling-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/.gitignore -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/README.md -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/build.gradle -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/doc/apkShell-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/doc/apkShell-release.apk -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/doc/key.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/doc/key.jks -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/proguard-rules.pro -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/MainActivity.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/XposedEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/XposedEntry.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/adapter/MainListViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/adapter/MainListViewAdapter.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/bean/AppBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/bean/AppBean.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/CLogUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/CLogUtils.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/Constants.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/Key.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/Key.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/PermissionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/PermissionUtils.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/SpUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/java/com/sfysoft/android/xposed/shelling/utils/SpUtil.java -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/layout/activity_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/layout/activity_list_item.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/build.gradle -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/gradle.properties -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/gradlew -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/gradlew.bat -------------------------------------------------------------------------------- /ApkShelling-master/ApkShelling-master/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/ApkShelling-master/ApkShelling-master/settings.gradle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiLuogege/ApkShellingDemo/HEAD/README.md --------------------------------------------------------------------------------