├── Dex ├── .DS_Store ├── APKTest │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── apktest │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── apktest │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MyApplication.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 │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── apktest │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── DexLoader │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── home │ │ │ │ └── com │ │ │ │ └── dexloader │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ ├── java │ │ │ │ └── home │ │ │ │ │ └── com │ │ │ │ │ └── dexloader │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MyApplication.java │ │ │ │ │ └── RefInvoke.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 │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── home │ │ │ └── com │ │ │ └── dexloader │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── DexLoader_jni │ ├── .gitignore │ ├── .idea │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── home │ │ │ │ └── com │ │ │ │ └── dexloader_jni │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ ├── java │ │ │ │ └── home │ │ │ │ │ └── com │ │ │ │ │ └── dexloader_jni │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MyApplication.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 │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── home │ │ │ └── com │ │ │ └── dexloader_jni │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── DexShellTools │ ├── .DS_Store │ ├── .idea │ ├── DexShellTools.iml │ ├── codeStyles │ │ └── Project.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml │ ├── CMakeLists.txt │ ├── Dex.h │ ├── cmake-build-debug │ ├── .DS_Store │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.12.3 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── DexShellTools.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ └── progress.make │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── clion-environment.txt │ │ ├── clion-log.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── DexShellTools │ ├── DexShellTools.cbp │ ├── Makefile │ └── cmake_install.cmake │ └── main.cpp ├── README.md └── So ├── .DS_Store ├── ElfEncrypt_function ├── .DS_Store ├── .idea │ ├── ElfEncrypt_function.iml │ ├── codeStyles │ │ └── Project.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── CMakeLists.txt ├── elf.h └── main.cpp ├── ElfEncrypt_section ├── .DS_Store ├── .idea │ ├── .name │ ├── ElfEncrypt.iml │ ├── codeStyles │ │ └── Project.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── CMakeLists.txt ├── elf.h └── main.cpp └── SoTest ├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── gradle.xml └── misc.xml ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── home │ │ └── com │ │ └── sotest │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ └── native-lib.cpp │ └── java │ │ └── home │ │ └── com │ │ └── sotest │ │ └── MainActivity.java │ └── test │ └── java │ └── home │ └── com │ └── sotest │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── 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 │ ├── colors.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /Dex/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/.DS_Store -------------------------------------------------------------------------------- /Dex/APKTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/.gitignore -------------------------------------------------------------------------------- /Dex/APKTest/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Dex/APKTest/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/.idea/gradle.xml -------------------------------------------------------------------------------- /Dex/APKTest/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/.idea/misc.xml -------------------------------------------------------------------------------- /Dex/APKTest/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/.idea/vcs.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Dex/APKTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/build.gradle -------------------------------------------------------------------------------- /Dex/APKTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/proguard-rules.pro -------------------------------------------------------------------------------- /Dex/APKTest/app/src/androidTest/java/com/apktest/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/androidTest/java/com/apktest/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/java/com/apktest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/java/com/apktest/MainActivity.java -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/java/com/apktest/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/java/com/apktest/MyApplication.java -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Dex/APKTest/app/src/test/java/com/apktest/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/app/src/test/java/com/apktest/ExampleUnitTest.java -------------------------------------------------------------------------------- /Dex/APKTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/build.gradle -------------------------------------------------------------------------------- /Dex/APKTest/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/gradle.properties -------------------------------------------------------------------------------- /Dex/APKTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Dex/APKTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Dex/APKTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/gradlew -------------------------------------------------------------------------------- /Dex/APKTest/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/APKTest/gradlew.bat -------------------------------------------------------------------------------- /Dex/APKTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Dex/DexLoader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/.gitignore -------------------------------------------------------------------------------- /Dex/DexLoader/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Dex/DexLoader/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /Dex/DexLoader/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/.idea/gradle.xml -------------------------------------------------------------------------------- /Dex/DexLoader/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/.idea/misc.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Dex/DexLoader/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/CMakeLists.txt -------------------------------------------------------------------------------- /Dex/DexLoader/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/build.gradle -------------------------------------------------------------------------------- /Dex/DexLoader/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/proguard-rules.pro -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/androidTest/java/home/com/dexloader/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/androidTest/java/home/com/dexloader/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/java/home/com/dexloader/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/java/home/com/dexloader/MainActivity.java -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/java/home/com/dexloader/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/java/home/com/dexloader/MyApplication.java -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/java/home/com/dexloader/RefInvoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/java/home/com/dexloader/RefInvoke.java -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Dex/DexLoader/app/src/test/java/home/com/dexloader/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/app/src/test/java/home/com/dexloader/ExampleUnitTest.java -------------------------------------------------------------------------------- /Dex/DexLoader/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/build.gradle -------------------------------------------------------------------------------- /Dex/DexLoader/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/gradle.properties -------------------------------------------------------------------------------- /Dex/DexLoader/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Dex/DexLoader/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Dex/DexLoader/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/gradlew -------------------------------------------------------------------------------- /Dex/DexLoader/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader/gradlew.bat -------------------------------------------------------------------------------- /Dex/DexLoader/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Dex/DexLoader_jni/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/.gitignore -------------------------------------------------------------------------------- /Dex/DexLoader_jni/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/.idea/gradle.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/.idea/misc.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/CMakeLists.txt -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/build.gradle -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/proguard-rules.pro -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/androidTest/java/home/com/dexloader_jni/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/androidTest/java/home/com/dexloader_jni/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/java/home/com/dexloader_jni/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/java/home/com/dexloader_jni/MainActivity.java -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/java/home/com/dexloader_jni/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/java/home/com/dexloader_jni/MyApplication.java -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Dex/DexLoader_jni/app/src/test/java/home/com/dexloader_jni/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/app/src/test/java/home/com/dexloader_jni/ExampleUnitTest.java -------------------------------------------------------------------------------- /Dex/DexLoader_jni/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/build.gradle -------------------------------------------------------------------------------- /Dex/DexLoader_jni/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/gradle.properties -------------------------------------------------------------------------------- /Dex/DexLoader_jni/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Dex/DexLoader_jni/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Dex/DexLoader_jni/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/gradlew -------------------------------------------------------------------------------- /Dex/DexLoader_jni/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexLoader_jni/gradlew.bat -------------------------------------------------------------------------------- /Dex/DexLoader_jni/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Dex/DexShellTools/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/.DS_Store -------------------------------------------------------------------------------- /Dex/DexShellTools/.idea/DexShellTools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/.idea/DexShellTools.iml -------------------------------------------------------------------------------- /Dex/DexShellTools/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /Dex/DexShellTools/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/.idea/misc.xml -------------------------------------------------------------------------------- /Dex/DexShellTools/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/.idea/modules.xml -------------------------------------------------------------------------------- /Dex/DexShellTools/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/.idea/vcs.xml -------------------------------------------------------------------------------- /Dex/DexShellTools/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/.idea/workspace.xml -------------------------------------------------------------------------------- /Dex/DexShellTools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/CMakeLists.txt -------------------------------------------------------------------------------- /Dex/DexShellTools/Dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/Dex.h -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/.DS_Store -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeCache.txt -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CMakeSystem.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdC/a.out -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/3.12.3/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/CXX.includecache -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/build.make -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/depend.internal -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/depend.make -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/flags.make -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/link.txt -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/main.cpp.o -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/DexShellTools.dir/progress.make -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/clion-environment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/clion-environment.txt -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/clion-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/clion-log.txt -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/DexShellTools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/DexShellTools -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/DexShellTools.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/DexShellTools.cbp -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/Makefile -------------------------------------------------------------------------------- /Dex/DexShellTools/cmake-build-debug/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/cmake-build-debug/cmake_install.cmake -------------------------------------------------------------------------------- /Dex/DexShellTools/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/Dex/DexShellTools/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AndroidShell 2 | 安卓加固的简单实现 3 | -------------------------------------------------------------------------------- /So/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/.DS_Store -------------------------------------------------------------------------------- /So/ElfEncrypt_function/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/.DS_Store -------------------------------------------------------------------------------- /So/ElfEncrypt_function/.idea/ElfEncrypt_function.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/.idea/ElfEncrypt_function.iml -------------------------------------------------------------------------------- /So/ElfEncrypt_function/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_function/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/.idea/misc.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_function/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/.idea/modules.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_function/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/.idea/workspace.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_function/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/CMakeLists.txt -------------------------------------------------------------------------------- /So/ElfEncrypt_function/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/elf.h -------------------------------------------------------------------------------- /So/ElfEncrypt_function/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_function/main.cpp -------------------------------------------------------------------------------- /So/ElfEncrypt_section/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/.DS_Store -------------------------------------------------------------------------------- /So/ElfEncrypt_section/.idea/.name: -------------------------------------------------------------------------------- 1 | ElfEncrypt -------------------------------------------------------------------------------- /So/ElfEncrypt_section/.idea/ElfEncrypt.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/.idea/ElfEncrypt.iml -------------------------------------------------------------------------------- /So/ElfEncrypt_section/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_section/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/.idea/misc.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_section/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/.idea/modules.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_section/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/.idea/workspace.xml -------------------------------------------------------------------------------- /So/ElfEncrypt_section/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/CMakeLists.txt -------------------------------------------------------------------------------- /So/ElfEncrypt_section/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/elf.h -------------------------------------------------------------------------------- /So/ElfEncrypt_section/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/ElfEncrypt_section/main.cpp -------------------------------------------------------------------------------- /So/SoTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/.gitignore -------------------------------------------------------------------------------- /So/SoTest/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /So/SoTest/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/.idea/gradle.xml -------------------------------------------------------------------------------- /So/SoTest/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/.idea/misc.xml -------------------------------------------------------------------------------- /So/SoTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /So/SoTest/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/CMakeLists.txt -------------------------------------------------------------------------------- /So/SoTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/build.gradle -------------------------------------------------------------------------------- /So/SoTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/proguard-rules.pro -------------------------------------------------------------------------------- /So/SoTest/app/src/androidTest/java/home/com/sotest/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/src/androidTest/java/home/com/sotest/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /So/SoTest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /So/SoTest/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /So/SoTest/app/src/main/java/home/com/sotest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/src/main/java/home/com/sotest/MainActivity.java -------------------------------------------------------------------------------- /So/SoTest/app/src/test/java/home/com/sotest/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/app/src/test/java/home/com/sotest/ExampleUnitTest.java -------------------------------------------------------------------------------- /So/SoTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/build.gradle -------------------------------------------------------------------------------- /So/SoTest/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/gradle.properties -------------------------------------------------------------------------------- /So/SoTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /So/SoTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /So/SoTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/gradlew -------------------------------------------------------------------------------- /So/SoTest/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/gradlew.bat -------------------------------------------------------------------------------- /So/SoTest/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /So/SoTest/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /So/SoTest/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/layout/activity_main.xml -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /So/SoTest/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /So/SoTest/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/values/colors.xml -------------------------------------------------------------------------------- /So/SoTest/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/values/strings.xml -------------------------------------------------------------------------------- /So/SoTest/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallsun107/AndroidShell/HEAD/So/SoTest/res/values/styles.xml -------------------------------------------------------------------------------- /So/SoTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------