├── .gitignore ├── LICENSE ├── README.md ├── docs ├── ARM指令速查手册.pdf ├── JNI_ENV_FUNCTIONS.xlsx ├── README.md ├── defs.h └── jni.pdf ├── hook ├── hello ├── hello.c ├── hook-inject ├── hook-inject-so.c ├── hook-inject.c ├── hook-modify-syscall.c ├── hook-syscall ├── hook-syscall.c └── libhook-inject-so.so ├── lab-mouse ├── AliCrackme_1.apk ├── AliCrackme_2.apk ├── AliCrackme_3.apk ├── com.xiachufang_138.apk ├── dazhongdianping.apk └── shell-protect-1.apk ├── libs └── XposedBridgeApi-54.jar ├── reverse-engineering ├── First-Smali │ ├── FirstSmali.dex │ └── FirstSmali.smali ├── Hello-Bytecode │ ├── Hello.class │ ├── Hello.dex │ ├── Hello.java │ ├── baksmaliout │ │ └── Hello.smali │ └── ddxout │ │ └── Hello.ddx ├── arm │ ├── GetCPU.dex │ ├── GetCPU.java │ ├── branch │ │ ├── hello-for.c │ │ ├── hello-for.s │ │ ├── hello-switch │ │ └── hello-switch.c │ ├── class │ │ └── hello-class.cpp │ └── hello-arm │ │ ├── hello-arm │ │ ├── hello-arm-project │ │ ├── AndroidManifest.xml │ │ ├── ant.properties │ │ ├── build.xml │ │ ├── jni │ │ │ ├── Android.mk │ │ │ ├── hello-arm.c │ │ │ └── hook-inject-so.c │ │ ├── libs │ │ │ └── armeabi │ │ │ │ ├── hello-arm │ │ │ │ └── libhook-inject-so.so │ │ ├── local.properties │ │ ├── obj │ │ │ └── local │ │ │ │ └── armeabi │ │ │ │ ├── hello-arm │ │ │ │ ├── libhello-arm.so │ │ │ │ ├── libhook-inject-so.so │ │ │ │ ├── libhook-inject.so │ │ │ │ └── objs │ │ │ │ ├── hello-arm │ │ │ │ ├── hello-arm.o │ │ │ │ └── hello-arm.o.d │ │ │ │ ├── hook-inject-so │ │ │ │ ├── hook-inject-so.o │ │ │ │ └── hook-inject-so.o.d │ │ │ │ └── hook-inject │ │ │ │ ├── hook-inject-so.o │ │ │ │ └── hook-inject-so.o.d │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── helloarm │ │ │ └── MainActivity.java │ │ ├── hello-arm-static │ │ ├── hello-arm.c │ │ └── hello-arm.s └── smali │ ├── HeyInnerclass$1InnerFun.class │ ├── HeyInnerclass$Inner1$Inner1_1.class │ ├── HeyInnerclass$Inner1.class │ ├── HeyInnerclass$Inner2.class │ ├── HeyInnerclass.class │ ├── HeyInnerclass.dex │ ├── HeyInnerclass.java │ ├── HeyIterator.class │ ├── HeyIterator.dex │ ├── HeyIterator.java │ ├── HeySwitch.class │ ├── HeySwitch.dex │ ├── HeySwitch.java │ ├── HeyTry.class │ ├── HeyTry.dex │ ├── HeyTry.java │ ├── HeyTry.txt │ └── out │ ├── HeyInnerclass$1InnerFun.smali │ ├── HeyInnerclass$Inner1$Inner1_1.smali │ ├── HeyInnerclass$Inner1.smali │ ├── HeyInnerclass$Inner2.smali │ ├── HeyInnerclass.smali │ ├── HeyIterator.smali │ ├── HeySwitch.smali │ └── HeyTry.smali ├── tools ├── 010editor-template │ ├── AndroidManifestTemplate.bt │ ├── DEXTemplate.bt │ └── ELFTemplate.bt ├── Jadx-0.6.0 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── bin │ │ ├── jadx │ │ ├── jadx-gui │ │ ├── jadx-gui.bat │ │ └── jadx.bat │ └── lib │ │ ├── android-5.1.jar │ │ ├── annotations-12.0.jar │ │ ├── asm-5.0.3.jar │ │ ├── commons-io-2.4.jar │ │ ├── dx-1.10.jar │ │ ├── gson-2.3.1.jar │ │ ├── jadx-cli-0.6.0.jar │ │ ├── jadx-core-0.6.0.jar │ │ ├── jadx-gui-0.6.0.jar │ │ ├── jcommander-1.47.jar │ │ ├── jfontchooser-1.0.5.jar │ │ ├── logback-classic-1.1.2.jar │ │ ├── logback-core-1.1.2.jar │ │ ├── rsyntaxtextarea-2.5.6.jar │ │ └── slf4j-api-1.7.10.jar ├── MasterKeys.jar ├── README.md ├── apktool │ ├── ShakaApktool_2.0.0-master-4e58eb6-20151221-release.jar │ ├── apktool │ ├── apktool.jar │ └── shakaapktool ├── baksmali.jar ├── ddx.jar ├── dex2jar │ ├── d2j-baksmali.sh │ ├── d2j-dex-recompute-checksum.sh │ ├── d2j-dex2jar.sh │ ├── d2j-dex2smali.sh │ ├── d2j-jar2dex.sh │ ├── d2j-jar2jasmin.sh │ ├── d2j-jasmin2jar.sh │ ├── d2j-smali.sh │ ├── d2j-std-apk.sh │ ├── d2j_invoke.sh │ └── lib │ │ ├── antlr-runtime-3.5.jar │ │ ├── asm-debug-all-4.1.jar │ │ ├── d2j-base-cmd-2.0.jar │ │ ├── d2j-jasmin-2.0.jar │ │ ├── d2j-smali-2.0.jar │ │ ├── dex-ir-2.0.jar │ │ ├── dex-reader-2.0.jar │ │ ├── dex-reader-api-2.0.jar │ │ ├── dex-tools-2.0.jar │ │ ├── dex-translator-2.0.jar │ │ ├── dex-writer-2.0.jar │ │ └── dx-1.7.jar ├── dexdump ├── dx ├── jd-gui │ ├── jd-gui-1.4.0.jar │ └── jd-gui_1.4.0-0_all.deb ├── lib │ ├── dx.jar │ └── libc++.so ├── odex │ ├── Android.mk │ ├── DexOptWrapper.cpp │ └── dexopt-wrapper ├── signapk │ ├── signapk-0.3.1.tar.bz2 │ ├── signapk.jar │ ├── signapk.sh │ ├── testkey.pk8 │ └── testkey.x509.pem └── smali.jar └── used-on-phone ├── GT_2.2.6.2.apk ├── README.md ├── ZjDroid.apk ├── de.robv.android.xposed.installer_v33_36570c.apk ├── native-libs-monitor-1.2.0.apk └── zhongduanmoniqi_71.apk /.gitignore: -------------------------------------------------------------------------------- 1 | tools/out/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/README.md -------------------------------------------------------------------------------- /docs/ARM指令速查手册.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/docs/ARM指令速查手册.pdf -------------------------------------------------------------------------------- /docs/JNI_ENV_FUNCTIONS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/docs/JNI_ENV_FUNCTIONS.xlsx -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/docs/defs.h -------------------------------------------------------------------------------- /docs/jni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/docs/jni.pdf -------------------------------------------------------------------------------- /hook/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hello -------------------------------------------------------------------------------- /hook/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hello.c -------------------------------------------------------------------------------- /hook/hook-inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hook-inject -------------------------------------------------------------------------------- /hook/hook-inject-so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hook-inject-so.c -------------------------------------------------------------------------------- /hook/hook-inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hook-inject.c -------------------------------------------------------------------------------- /hook/hook-modify-syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hook-modify-syscall.c -------------------------------------------------------------------------------- /hook/hook-syscall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hook-syscall -------------------------------------------------------------------------------- /hook/hook-syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/hook-syscall.c -------------------------------------------------------------------------------- /hook/libhook-inject-so.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/hook/libhook-inject-so.so -------------------------------------------------------------------------------- /lab-mouse/AliCrackme_1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/lab-mouse/AliCrackme_1.apk -------------------------------------------------------------------------------- /lab-mouse/AliCrackme_2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/lab-mouse/AliCrackme_2.apk -------------------------------------------------------------------------------- /lab-mouse/AliCrackme_3.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/lab-mouse/AliCrackme_3.apk -------------------------------------------------------------------------------- /lab-mouse/com.xiachufang_138.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/lab-mouse/com.xiachufang_138.apk -------------------------------------------------------------------------------- /lab-mouse/dazhongdianping.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/lab-mouse/dazhongdianping.apk -------------------------------------------------------------------------------- /lab-mouse/shell-protect-1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/lab-mouse/shell-protect-1.apk -------------------------------------------------------------------------------- /libs/XposedBridgeApi-54.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/libs/XposedBridgeApi-54.jar -------------------------------------------------------------------------------- /reverse-engineering/First-Smali/FirstSmali.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/First-Smali/FirstSmali.dex -------------------------------------------------------------------------------- /reverse-engineering/First-Smali/FirstSmali.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/First-Smali/FirstSmali.smali -------------------------------------------------------------------------------- /reverse-engineering/Hello-Bytecode/Hello.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/Hello-Bytecode/Hello.class -------------------------------------------------------------------------------- /reverse-engineering/Hello-Bytecode/Hello.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/Hello-Bytecode/Hello.dex -------------------------------------------------------------------------------- /reverse-engineering/Hello-Bytecode/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/Hello-Bytecode/Hello.java -------------------------------------------------------------------------------- /reverse-engineering/Hello-Bytecode/baksmaliout/Hello.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/Hello-Bytecode/baksmaliout/Hello.smali -------------------------------------------------------------------------------- /reverse-engineering/Hello-Bytecode/ddxout/Hello.ddx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/Hello-Bytecode/ddxout/Hello.ddx -------------------------------------------------------------------------------- /reverse-engineering/arm/GetCPU.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/GetCPU.dex -------------------------------------------------------------------------------- /reverse-engineering/arm/GetCPU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/GetCPU.java -------------------------------------------------------------------------------- /reverse-engineering/arm/branch/hello-for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/branch/hello-for.c -------------------------------------------------------------------------------- /reverse-engineering/arm/branch/hello-for.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/branch/hello-for.s -------------------------------------------------------------------------------- /reverse-engineering/arm/branch/hello-switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/branch/hello-switch -------------------------------------------------------------------------------- /reverse-engineering/arm/branch/hello-switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/branch/hello-switch.c -------------------------------------------------------------------------------- /reverse-engineering/arm/class/hello-class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/class/hello-class.cpp -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/AndroidManifest.xml -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/ant.properties -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/build.xml -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/jni/Android.mk -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/jni/hello-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/jni/hello-arm.c -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/jni/hook-inject-so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/jni/hook-inject-so.c -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/libs/armeabi/hello-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/libs/armeabi/hello-arm -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/libs/armeabi/libhook-inject-so.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/libs/armeabi/libhook-inject-so.so -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/local.properties -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/hello-arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/hello-arm -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/libhello-arm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/libhello-arm.so -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/libhook-inject-so.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/libhook-inject-so.so -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/libhook-inject.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/libhook-inject.so -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hello-arm/hello-arm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hello-arm/hello-arm.o -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hello-arm/hello-arm.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hello-arm/hello-arm.o.d -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject-so/hook-inject-so.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject-so/hook-inject-so.o -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject-so/hook-inject-so.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject-so/hook-inject-so.o.d -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject/hook-inject-so.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject/hook-inject-so.o -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject/hook-inject-so.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/obj/local/armeabi/objs/hook-inject/hook-inject-so.o.d -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/proguard-project.txt -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/project.properties -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/res/layout/main.xml -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/res/values/strings.xml -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-project/src/com/helloarm/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-project/src/com/helloarm/MainActivity.java -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm-static -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm.c -------------------------------------------------------------------------------- /reverse-engineering/arm/hello-arm/hello-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/arm/hello-arm/hello-arm.s -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyInnerclass$1InnerFun.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyInnerclass$1InnerFun.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyInnerclass$Inner1$Inner1_1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyInnerclass$Inner1$Inner1_1.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyInnerclass$Inner1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyInnerclass$Inner1.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyInnerclass$Inner2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyInnerclass$Inner2.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyInnerclass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyInnerclass.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyInnerclass.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyInnerclass.dex -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyInnerclass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyInnerclass.java -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyIterator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyIterator.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyIterator.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyIterator.dex -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyIterator.java -------------------------------------------------------------------------------- /reverse-engineering/smali/HeySwitch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeySwitch.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeySwitch.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeySwitch.dex -------------------------------------------------------------------------------- /reverse-engineering/smali/HeySwitch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeySwitch.java -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyTry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyTry.class -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyTry.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyTry.dex -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyTry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyTry.java -------------------------------------------------------------------------------- /reverse-engineering/smali/HeyTry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/HeyTry.txt -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeyInnerclass$1InnerFun.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeyInnerclass$1InnerFun.smali -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeyInnerclass$Inner1$Inner1_1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeyInnerclass$Inner1$Inner1_1.smali -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeyInnerclass$Inner1.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeyInnerclass$Inner1.smali -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeyInnerclass$Inner2.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeyInnerclass$Inner2.smali -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeyInnerclass.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeyInnerclass.smali -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeyIterator.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeyIterator.smali -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeySwitch.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeySwitch.smali -------------------------------------------------------------------------------- /reverse-engineering/smali/out/HeyTry.smali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/reverse-engineering/smali/out/HeyTry.smali -------------------------------------------------------------------------------- /tools/010editor-template/AndroidManifestTemplate.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/010editor-template/AndroidManifestTemplate.bt -------------------------------------------------------------------------------- /tools/010editor-template/DEXTemplate.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/010editor-template/DEXTemplate.bt -------------------------------------------------------------------------------- /tools/010editor-template/ELFTemplate.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/010editor-template/ELFTemplate.bt -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/LICENSE -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/NOTICE -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/README.md -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/bin/jadx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/bin/jadx -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/bin/jadx-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/bin/jadx-gui -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/bin/jadx-gui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/bin/jadx-gui.bat -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/bin/jadx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/bin/jadx.bat -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/android-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/android-5.1.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/annotations-12.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/annotations-12.0.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/asm-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/asm-5.0.3.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/dx-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/dx-1.10.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/gson-2.3.1.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/jadx-cli-0.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/jadx-cli-0.6.0.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/jadx-core-0.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/jadx-core-0.6.0.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/jadx-gui-0.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/jadx-gui-0.6.0.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/jcommander-1.47.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/jcommander-1.47.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/jfontchooser-1.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/jfontchooser-1.0.5.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/logback-classic-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/logback-classic-1.1.2.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/logback-core-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/logback-core-1.1.2.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/rsyntaxtextarea-2.5.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/rsyntaxtextarea-2.5.6.jar -------------------------------------------------------------------------------- /tools/Jadx-0.6.0/lib/slf4j-api-1.7.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/Jadx-0.6.0/lib/slf4j-api-1.7.10.jar -------------------------------------------------------------------------------- /tools/MasterKeys.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/MasterKeys.jar -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/apktool/ShakaApktool_2.0.0-master-4e58eb6-20151221-release.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/apktool/ShakaApktool_2.0.0-master-4e58eb6-20151221-release.jar -------------------------------------------------------------------------------- /tools/apktool/apktool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/apktool/apktool -------------------------------------------------------------------------------- /tools/apktool/apktool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/apktool/apktool.jar -------------------------------------------------------------------------------- /tools/apktool/shakaapktool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/apktool/shakaapktool -------------------------------------------------------------------------------- /tools/baksmali.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/baksmali.jar -------------------------------------------------------------------------------- /tools/ddx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/ddx.jar -------------------------------------------------------------------------------- /tools/dex2jar/d2j-baksmali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-baksmali.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-dex-recompute-checksum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-dex-recompute-checksum.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-dex2jar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-dex2jar.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-dex2smali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-dex2smali.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-jar2dex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-jar2dex.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-jar2jasmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-jar2jasmin.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-jasmin2jar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-jasmin2jar.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-smali.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-smali.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j-std-apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j-std-apk.sh -------------------------------------------------------------------------------- /tools/dex2jar/d2j_invoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/d2j_invoke.sh -------------------------------------------------------------------------------- /tools/dex2jar/lib/antlr-runtime-3.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/antlr-runtime-3.5.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/asm-debug-all-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/asm-debug-all-4.1.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/d2j-base-cmd-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/d2j-base-cmd-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/d2j-jasmin-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/d2j-jasmin-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/d2j-smali-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/d2j-smali-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/dex-ir-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/dex-ir-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/dex-reader-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/dex-reader-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/dex-reader-api-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/dex-reader-api-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/dex-tools-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/dex-tools-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/dex-translator-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/dex-translator-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/dex-writer-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/dex-writer-2.0.jar -------------------------------------------------------------------------------- /tools/dex2jar/lib/dx-1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dex2jar/lib/dx-1.7.jar -------------------------------------------------------------------------------- /tools/dexdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dexdump -------------------------------------------------------------------------------- /tools/dx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/dx -------------------------------------------------------------------------------- /tools/jd-gui/jd-gui-1.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/jd-gui/jd-gui-1.4.0.jar -------------------------------------------------------------------------------- /tools/jd-gui/jd-gui_1.4.0-0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/jd-gui/jd-gui_1.4.0-0_all.deb -------------------------------------------------------------------------------- /tools/lib/dx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/lib/dx.jar -------------------------------------------------------------------------------- /tools/lib/libc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/lib/libc++.so -------------------------------------------------------------------------------- /tools/odex/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/odex/Android.mk -------------------------------------------------------------------------------- /tools/odex/DexOptWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/odex/DexOptWrapper.cpp -------------------------------------------------------------------------------- /tools/odex/dexopt-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/odex/dexopt-wrapper -------------------------------------------------------------------------------- /tools/signapk/signapk-0.3.1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/signapk/signapk-0.3.1.tar.bz2 -------------------------------------------------------------------------------- /tools/signapk/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/signapk/signapk.jar -------------------------------------------------------------------------------- /tools/signapk/signapk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/signapk/signapk.sh -------------------------------------------------------------------------------- /tools/signapk/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/signapk/testkey.pk8 -------------------------------------------------------------------------------- /tools/signapk/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/signapk/testkey.x509.pem -------------------------------------------------------------------------------- /tools/smali.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/tools/smali.jar -------------------------------------------------------------------------------- /used-on-phone/GT_2.2.6.2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/used-on-phone/GT_2.2.6.2.apk -------------------------------------------------------------------------------- /used-on-phone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/used-on-phone/README.md -------------------------------------------------------------------------------- /used-on-phone/ZjDroid.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/used-on-phone/ZjDroid.apk -------------------------------------------------------------------------------- /used-on-phone/de.robv.android.xposed.installer_v33_36570c.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/used-on-phone/de.robv.android.xposed.installer_v33_36570c.apk -------------------------------------------------------------------------------- /used-on-phone/native-libs-monitor-1.2.0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/used-on-phone/native-libs-monitor-1.2.0.apk -------------------------------------------------------------------------------- /used-on-phone/zhongduanmoniqi_71.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiyadesu/Android/HEAD/used-on-phone/zhongduanmoniqi_71.apk --------------------------------------------------------------------------------