├── README.md ├── demo.keystore ├── lib-source code └── yongyejiagu.cpp ├── lib └── libyongyejiagu.so ├── shellApplicationSourceCode ├── AndroidManifest.xml ├── java │ └── cn │ │ └── yongye │ │ └── nativeshell │ │ ├── MainActivity.java │ │ ├── StubApp.java │ │ └── common │ │ ├── Config.java │ │ ├── FileUtils.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 ├── sosheller.py └── test.apk /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/README.md -------------------------------------------------------------------------------- /demo.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/demo.keystore -------------------------------------------------------------------------------- /lib-source code/yongyejiagu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/lib-source code/yongyejiagu.cpp -------------------------------------------------------------------------------- /lib/libyongyejiagu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/lib/libyongyejiagu.so -------------------------------------------------------------------------------- /shellApplicationSourceCode/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/AndroidManifest.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/nativeshell/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/java/cn/yongye/nativeshell/MainActivity.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/nativeshell/StubApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/java/cn/yongye/nativeshell/StubApp.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/nativeshell/common/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/java/cn/yongye/nativeshell/common/Config.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/nativeshell/common/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/java/cn/yongye/nativeshell/common/FileUtils.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/nativeshell/common/RefInvoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/java/cn/yongye/nativeshell/common/RefInvoke.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/layout/activity_main.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/values/colors.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/values/strings.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/shellApplicationSourceCode/res/values/styles.xml -------------------------------------------------------------------------------- /sosheller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/sosheller.py -------------------------------------------------------------------------------- /test.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/dexsheller/HEAD/test.apk --------------------------------------------------------------------------------