├── README.md ├── demo.keystore ├── images ├── wx.jpg └── zfb.jpg ├── requests.txt ├── shellApplicationSourceCode ├── AndroidManifest.xml ├── java │ └── cn │ │ └── yongye │ │ └── stub │ │ ├── MainActivity.java │ │ ├── R.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 ├── sheller.py └── tools ├── android.jar ├── apksigner.jar ├── apktool_2.5.0.jar ├── apktool_2.9.3.jar └── dx.jar /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/README.md -------------------------------------------------------------------------------- /demo.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/demo.keystore -------------------------------------------------------------------------------- /images/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/images/wx.jpg -------------------------------------------------------------------------------- /images/zfb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/images/zfb.jpg -------------------------------------------------------------------------------- /requests.txt: -------------------------------------------------------------------------------- 1 | filetype 2 | -------------------------------------------------------------------------------- /shellApplicationSourceCode/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/AndroidManifest.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/stub/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/java/cn/yongye/stub/MainActivity.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/stub/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/java/cn/yongye/stub/R.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/stub/StubApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/java/cn/yongye/stub/StubApp.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/stub/common/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/java/cn/yongye/stub/common/Config.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/stub/common/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/java/cn/yongye/stub/common/FileUtils.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/java/cn/yongye/stub/common/RefInvoke.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/java/cn/yongye/stub/common/RefInvoke.java -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/layout/activity_main.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/values/colors.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/values/strings.xml -------------------------------------------------------------------------------- /shellApplicationSourceCode/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/shellApplicationSourceCode/res/values/styles.xml -------------------------------------------------------------------------------- /sheller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/sheller.py -------------------------------------------------------------------------------- /tools/android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/tools/android.jar -------------------------------------------------------------------------------- /tools/apksigner.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/tools/apksigner.jar -------------------------------------------------------------------------------- /tools/apktool_2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/tools/apktool_2.5.0.jar -------------------------------------------------------------------------------- /tools/apktool_2.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/tools/apktool_2.9.3.jar -------------------------------------------------------------------------------- /tools/dx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyecc/apksheller/HEAD/tools/dx.jar --------------------------------------------------------------------------------