├── .gitignore ├── DexReinforcingTools ├── .idea │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── uiDesigner.xml │ └── workspace.xml ├── data │ ├── sign │ │ ├── signapk.jar │ │ ├── testkey.pk8 │ │ └── testkey.x509.pem │ └── signAndInstall.bat └── src │ └── com │ └── example │ └── reinforcingapk │ └── ReinforcingApk.java ├── MyApk ├── .idea │ ├── gradle.xml │ ├── libraries │ │ ├── com_android_support_support_annotations_20_0_0_jar.xml │ │ └── com_android_support_support_v4_20_0_0.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── myapk │ │ │ ├── MainActivity.java │ │ │ ├── MyApplication.java │ │ │ └── SubActivity.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ └── strings.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt └── settings.gradle ├── Readme.md ├── ShellingMyApk ├── .idea │ ├── encodings.xml │ ├── gradle.xml │ ├── libraries │ │ ├── com_android_support_support_annotations_20_0_0_jar.xml │ │ └── com_android_support_support_v4_20_0_0.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── reforceapk │ │ │ ├── MainActivity.java │ │ │ ├── ProxyApplication.java │ │ │ └── RefInvoke.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ └── strings.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt └── settings.gradle └── doc └── pic └── apk_dex_shell.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/.gitignore -------------------------------------------------------------------------------- /DexReinforcingTools/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/.idea/encodings.xml -------------------------------------------------------------------------------- /DexReinforcingTools/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/.idea/misc.xml -------------------------------------------------------------------------------- /DexReinforcingTools/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/.idea/modules.xml -------------------------------------------------------------------------------- /DexReinforcingTools/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /DexReinforcingTools/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/.idea/workspace.xml -------------------------------------------------------------------------------- /DexReinforcingTools/data/sign/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/data/sign/signapk.jar -------------------------------------------------------------------------------- /DexReinforcingTools/data/sign/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/data/sign/testkey.pk8 -------------------------------------------------------------------------------- /DexReinforcingTools/data/sign/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/data/sign/testkey.x509.pem -------------------------------------------------------------------------------- /DexReinforcingTools/data/signAndInstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/data/signAndInstall.bat -------------------------------------------------------------------------------- /DexReinforcingTools/src/com/example/reinforcingapk/ReinforcingApk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/DexReinforcingTools/src/com/example/reinforcingapk/ReinforcingApk.java -------------------------------------------------------------------------------- /MyApk/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/.idea/gradle.xml -------------------------------------------------------------------------------- /MyApk/.idea/libraries/com_android_support_support_annotations_20_0_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/.idea/libraries/com_android_support_support_annotations_20_0_0_jar.xml -------------------------------------------------------------------------------- /MyApk/.idea/libraries/com_android_support_support_v4_20_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/.idea/libraries/com_android_support_support_v4_20_0_0.xml -------------------------------------------------------------------------------- /MyApk/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/.idea/misc.xml -------------------------------------------------------------------------------- /MyApk/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/.idea/modules.xml -------------------------------------------------------------------------------- /MyApk/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /MyApk/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/.idea/workspace.xml -------------------------------------------------------------------------------- /MyApk/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/build.gradle -------------------------------------------------------------------------------- /MyApk/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MyApk/app/src/main/java/com/example/myapk/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/java/com/example/myapk/MainActivity.java -------------------------------------------------------------------------------- /MyApk/app/src/main/java/com/example/myapk/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/java/com/example/myapk/MyApplication.java -------------------------------------------------------------------------------- /MyApk/app/src/main/java/com/example/myapk/SubActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/java/com/example/myapk/SubActivity.java -------------------------------------------------------------------------------- /MyApk/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApk/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApk/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApk/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApk/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /MyApk/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /MyApk/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /MyApk/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MyApk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/build.gradle -------------------------------------------------------------------------------- /MyApk/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyApk/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /MyApk/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/gradlew -------------------------------------------------------------------------------- /MyApk/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/gradlew.bat -------------------------------------------------------------------------------- /MyApk/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/MyApk/import-summary.txt -------------------------------------------------------------------------------- /MyApk/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/Readme.md -------------------------------------------------------------------------------- /ShellingMyApk/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/encodings.xml -------------------------------------------------------------------------------- /ShellingMyApk/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/gradle.xml -------------------------------------------------------------------------------- /ShellingMyApk/.idea/libraries/com_android_support_support_annotations_20_0_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/libraries/com_android_support_support_annotations_20_0_0_jar.xml -------------------------------------------------------------------------------- /ShellingMyApk/.idea/libraries/com_android_support_support_v4_20_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/libraries/com_android_support_support_v4_20_0_0.xml -------------------------------------------------------------------------------- /ShellingMyApk/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/misc.xml -------------------------------------------------------------------------------- /ShellingMyApk/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/modules.xml -------------------------------------------------------------------------------- /ShellingMyApk/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /ShellingMyApk/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/.idea/workspace.xml -------------------------------------------------------------------------------- /ShellingMyApk/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/build.gradle -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/java/com/example/reforceapk/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/java/com/example/reforceapk/MainActivity.java -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/java/com/example/reforceapk/ProxyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/java/com/example/reforceapk/ProxyApplication.java -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/java/com/example/reforceapk/RefInvoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/java/com/example/reforceapk/RefInvoke.java -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /ShellingMyApk/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ShellingMyApk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/build.gradle -------------------------------------------------------------------------------- /ShellingMyApk/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ShellingMyApk/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ShellingMyApk/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/gradlew -------------------------------------------------------------------------------- /ShellingMyApk/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/gradlew.bat -------------------------------------------------------------------------------- /ShellingMyApk/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/ShellingMyApk/import-summary.txt -------------------------------------------------------------------------------- /ShellingMyApk/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /doc/pic/apk_dex_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oncealong/apk_dex_shell/HEAD/doc/pic/apk_dex_shell.png --------------------------------------------------------------------------------