├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ ├── app-release_sign.apk │ ├── classes.dex │ ├── classes1.dex │ └── output-metadata.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── instruction │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── libdex │ │ │ ├── Android.bp │ │ │ ├── DexCatch.cpp │ │ │ ├── DexCatch.h │ │ │ ├── DexClass.cpp │ │ │ ├── DexClass.h │ │ │ ├── DexDataMap.cpp │ │ │ ├── DexDataMap.h │ │ │ ├── DexFile.cpp │ │ │ ├── DexFile.h │ │ │ ├── DexOptData.cpp │ │ │ ├── DexOptData.h │ │ │ ├── DexProto.cpp │ │ │ ├── DexProto.h │ │ │ ├── Leb128.cpp │ │ │ ├── Leb128.h │ │ │ ├── SysUtil.cpp │ │ │ ├── SysUtil.h │ │ │ ├── sha1.cpp │ │ │ └── sha1.h │ │ └── native-lib.cpp │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── instruction │ │ │ ├── MainActivity.java │ │ │ └── Test.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── 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-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── example │ └── instruction │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Android第三代壳 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/app-release_sign.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/release/app-release_sign.apk -------------------------------------------------------------------------------- /app/release/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/release/classes.dex -------------------------------------------------------------------------------- /app/release/classes1.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/release/classes1.dex -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/instruction/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/androidTest/java/com/example/instruction/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/Android.bp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexCatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexCatch.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexCatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexCatch.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexClass.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexClass.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexDataMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexDataMap.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexDataMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexDataMap.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexFile.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexFile.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexOptData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexOptData.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexOptData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexOptData.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexProto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexProto.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/DexProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/DexProto.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/Leb128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/Leb128.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/Leb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/Leb128.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/SysUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/SysUtil.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/SysUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/SysUtil.h -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/sha1.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/libdex/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/libdex/sha1.h -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/java/com/example/instruction/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/java/com/example/instruction/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/instruction/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/java/com/example/instruction/Test.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/instruction/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/app/src/test/java/com/example/instruction/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huyehan/Third_generation_shell/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "instruction" --------------------------------------------------------------------------------