├── .gitignore ├── 001-HiddenMethod ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ └── Test.modified.dex ├── bin │ ├── AndroidManifest.xml │ ├── classes.dex │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ └── hiddenmethod │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── hiddenmethod │ ├── MainActivity.java │ └── Security.java ├── 002-DexEncrypt ├── .classpath ├── .project ├── AndroidManifest.xml ├── assets │ └── Test.modified.encrypted.dex ├── bin │ ├── AndroidManifest.xml │ ├── classes.dex │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ └── dexencrypt │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── dexencrypt │ ├── Common.java │ ├── DESUtils.java │ ├── MainActivity.java │ └── Security.java ├── 003-SectionEncrypt ├── .classpath ├── .project ├── AndroidManifest.xml ├── README.txt ├── ant.properties ├── bin │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.d │ ├── NdkDemo1-debug-unaligned.apk.d │ ├── NdkDemo1.ap_ │ ├── NdkDemo1.ap_.d │ ├── build.prop │ ├── classes.dex │ ├── classes.dex.d │ ├── proguard.txt │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── build.xml ├── gen │ ├── R.java.d │ └── com │ │ └── demo │ │ ├── BuildConfig.java │ │ └── R.java ├── jni │ ├── Android.mk │ ├── com_demo_MainActivity.h │ └── demo.cpp ├── local.properties ├── obj │ └── local │ │ └── armeabi │ │ ├── libstdc++.a │ │ └── objs │ │ └── demo │ │ └── demo.o.d ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── demo │ └── MainActivity.java ├── 004-MethodEncrypt ├── .classpath ├── .project ├── AndroidManifest.xml ├── README.txt ├── ant.properties ├── bin │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.d │ ├── NdkDemo1-debug-unaligned.apk.d │ ├── NdkDemo1.ap_ │ ├── NdkDemo1.ap_.d │ ├── build.prop │ ├── classes.dex │ ├── classes.dex.d │ ├── proguard.txt │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── build.xml ├── gen │ ├── R.java.d │ └── com │ │ └── demo │ │ ├── BuildConfig.java │ │ └── R.java ├── jni │ ├── Android.mk │ ├── com_demo_MainActivity.h │ └── demo.cpp ├── local.properties ├── obj │ └── local │ │ └── armeabi │ │ ├── libstdc++.a │ │ └── objs │ │ └── demo │ │ └── demo.o.d ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── demo │ └── MainActivity.java ├── 005-Dalvik运行时篡改字节码 ├── AndroidManifest.xml ├── ant.properties ├── bin │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.d │ ├── NdkDemo1-debug-unaligned.apk.d │ ├── NdkDemo1.ap_ │ ├── NdkDemo1.ap_.d │ ├── build.prop │ ├── classes.dex │ ├── classes.dex.d │ ├── proguard.txt │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── build.xml ├── gen │ ├── R.java.d │ └── com │ │ └── demo │ │ ├── BuildConfig.java │ │ └── R.java ├── jni │ ├── Android.mk │ ├── DexFile.h │ ├── MiniDexFile.h │ ├── com_demo_MainActivity.h │ ├── demo1.cpp │ └── mycommon.h ├── libs │ └── armeabi │ │ ├── gdb.setup │ │ └── gdbserver ├── local.properties ├── obj │ └── local │ │ └── armeabi │ │ ├── libstdc++.a │ │ └── objs-debug │ │ └── demo1 │ │ └── demo1.o.d ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── demo │ ├── MainActivity.java │ └── Test.java ├── 006-通过hook重定向native方法 ├── AndroidManifest.xml ├── ant.properties ├── bin │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.d │ ├── NdkDemo1-debug-unaligned.apk.d │ ├── NdkDemo1.ap_ │ ├── NdkDemo1.ap_.d │ ├── build.prop │ ├── classes.dex │ ├── classes.dex.d │ ├── proguard.txt │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── build.xml ├── gen │ ├── R.java.d │ └── com │ │ └── demo │ │ ├── BuildConfig.java │ │ └── R.java ├── jni │ ├── Android.mk │ ├── README.txt │ ├── com_demo_MainActivity.h │ ├── hackcodejiagu.cpp │ ├── hello.cpp │ └── substrate.h ├── libs │ └── armeabi │ │ ├── gdb.setup │ │ └── gdbserver ├── local.properties ├── obj │ └── local │ │ └── armeabi │ │ ├── libstdc++.a │ │ └── objs-debug │ │ ├── demo1 │ │ └── demo1.o.d │ │ ├── hackcodejiagu │ │ └── hackcodejiagu.o.d │ │ └── hello │ │ └── hello.o.d ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── demo │ ├── MainActivity.java │ └── ProxyApplication.java ├── 007-动态注册native方法 ├── AndroidManifest.xml ├── ant.properties ├── bin │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.d │ ├── NdkDemo1-debug-unaligned.apk.d │ ├── NdkDemo1.ap_ │ ├── NdkDemo1.ap_.d │ ├── build.prop │ ├── classes.dex │ ├── classes.dex.d │ ├── proguard.txt │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ └── ic_launcher.png ├── build.xml ├── gen │ ├── R.java.d │ └── com │ │ └── demo │ │ ├── BuildConfig.java │ │ └── R.java ├── jni │ ├── Android.mk │ └── demo.c ├── libs │ └── armeabi │ │ └── disassemble.txt ├── local.properties ├── obj │ └── local │ │ └── armeabi │ │ └── objs │ │ └── demo │ │ └── demo.o.d ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── demo │ └── MainActivity.java ├── README.md └── shellTools ├── elf.h ├── elf_parser.c ├── elf_parser.h ├── elf_tools.c ├── elf_tools.h ├── main.c └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/.gitignore -------------------------------------------------------------------------------- /001-HiddenMethod/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/.classpath -------------------------------------------------------------------------------- /001-HiddenMethod/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/.project -------------------------------------------------------------------------------- /001-HiddenMethod/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /001-HiddenMethod/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/AndroidManifest.xml -------------------------------------------------------------------------------- /001-HiddenMethod/assets/Test.modified.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/assets/Test.modified.dex -------------------------------------------------------------------------------- /001-HiddenMethod/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /001-HiddenMethod/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/bin/classes.dex -------------------------------------------------------------------------------- /001-HiddenMethod/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/bin/resources.ap_ -------------------------------------------------------------------------------- /001-HiddenMethod/gen/com/hiddenmethod/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/gen/com/hiddenmethod/BuildConfig.java -------------------------------------------------------------------------------- /001-HiddenMethod/gen/com/hiddenmethod/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/gen/com/hiddenmethod/R.java -------------------------------------------------------------------------------- /001-HiddenMethod/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/ic_launcher-web.png -------------------------------------------------------------------------------- /001-HiddenMethod/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/proguard-project.txt -------------------------------------------------------------------------------- /001-HiddenMethod/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/project.properties -------------------------------------------------------------------------------- /001-HiddenMethod/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-HiddenMethod/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/layout/activity_main.xml -------------------------------------------------------------------------------- /001-HiddenMethod/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/menu/main.xml -------------------------------------------------------------------------------- /001-HiddenMethod/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/values-v11/styles.xml -------------------------------------------------------------------------------- /001-HiddenMethod/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/values-v14/styles.xml -------------------------------------------------------------------------------- /001-HiddenMethod/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /001-HiddenMethod/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/values/dimens.xml -------------------------------------------------------------------------------- /001-HiddenMethod/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/values/strings.xml -------------------------------------------------------------------------------- /001-HiddenMethod/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/res/values/styles.xml -------------------------------------------------------------------------------- /001-HiddenMethod/src/com/hiddenmethod/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/src/com/hiddenmethod/MainActivity.java -------------------------------------------------------------------------------- /001-HiddenMethod/src/com/hiddenmethod/Security.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/001-HiddenMethod/src/com/hiddenmethod/Security.java -------------------------------------------------------------------------------- /002-DexEncrypt/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/.classpath -------------------------------------------------------------------------------- /002-DexEncrypt/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/.project -------------------------------------------------------------------------------- /002-DexEncrypt/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/AndroidManifest.xml -------------------------------------------------------------------------------- /002-DexEncrypt/assets/Test.modified.encrypted.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/assets/Test.modified.encrypted.dex -------------------------------------------------------------------------------- /002-DexEncrypt/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /002-DexEncrypt/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/bin/classes.dex -------------------------------------------------------------------------------- /002-DexEncrypt/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/bin/resources.ap_ -------------------------------------------------------------------------------- /002-DexEncrypt/gen/com/dexencrypt/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/gen/com/dexencrypt/BuildConfig.java -------------------------------------------------------------------------------- /002-DexEncrypt/gen/com/dexencrypt/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/gen/com/dexencrypt/R.java -------------------------------------------------------------------------------- /002-DexEncrypt/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/ic_launcher-web.png -------------------------------------------------------------------------------- /002-DexEncrypt/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/proguard-project.txt -------------------------------------------------------------------------------- /002-DexEncrypt/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/project.properties -------------------------------------------------------------------------------- /002-DexEncrypt/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-DexEncrypt/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/layout/activity_main.xml -------------------------------------------------------------------------------- /002-DexEncrypt/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/menu/main.xml -------------------------------------------------------------------------------- /002-DexEncrypt/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/values-v11/styles.xml -------------------------------------------------------------------------------- /002-DexEncrypt/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/values-v14/styles.xml -------------------------------------------------------------------------------- /002-DexEncrypt/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /002-DexEncrypt/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/values/dimens.xml -------------------------------------------------------------------------------- /002-DexEncrypt/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/values/strings.xml -------------------------------------------------------------------------------- /002-DexEncrypt/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/res/values/styles.xml -------------------------------------------------------------------------------- /002-DexEncrypt/src/com/dexencrypt/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/src/com/dexencrypt/Common.java -------------------------------------------------------------------------------- /002-DexEncrypt/src/com/dexencrypt/DESUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/src/com/dexencrypt/DESUtils.java -------------------------------------------------------------------------------- /002-DexEncrypt/src/com/dexencrypt/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/src/com/dexencrypt/MainActivity.java -------------------------------------------------------------------------------- /002-DexEncrypt/src/com/dexencrypt/Security.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/002-DexEncrypt/src/com/dexencrypt/Security.java -------------------------------------------------------------------------------- /003-SectionEncrypt/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/.classpath -------------------------------------------------------------------------------- /003-SectionEncrypt/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/.project -------------------------------------------------------------------------------- /003-SectionEncrypt/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/AndroidManifest.xml -------------------------------------------------------------------------------- /003-SectionEncrypt/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/README.txt -------------------------------------------------------------------------------- /003-SectionEncrypt/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/ant.properties -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/AndroidManifest.xml.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/AndroidManifest.xml.d -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/NdkDemo1-debug-unaligned.apk.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/NdkDemo1-debug-unaligned.apk.d -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/NdkDemo1.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/NdkDemo1.ap_ -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/NdkDemo1.ap_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/NdkDemo1.ap_.d -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/build.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/build.prop -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/classes.dex -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/classes.dex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/classes.dex.d -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/proguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/proguard.txt -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/build.xml -------------------------------------------------------------------------------- /003-SectionEncrypt/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/gen/R.java.d -------------------------------------------------------------------------------- /003-SectionEncrypt/gen/com/demo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/gen/com/demo/BuildConfig.java -------------------------------------------------------------------------------- /003-SectionEncrypt/gen/com/demo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/gen/com/demo/R.java -------------------------------------------------------------------------------- /003-SectionEncrypt/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/jni/Android.mk -------------------------------------------------------------------------------- /003-SectionEncrypt/jni/com_demo_MainActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/jni/com_demo_MainActivity.h -------------------------------------------------------------------------------- /003-SectionEncrypt/jni/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/jni/demo.cpp -------------------------------------------------------------------------------- /003-SectionEncrypt/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/local.properties -------------------------------------------------------------------------------- /003-SectionEncrypt/obj/local/armeabi/libstdc++.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /003-SectionEncrypt/obj/local/armeabi/objs/demo/demo.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/obj/local/armeabi/objs/demo/demo.o.d -------------------------------------------------------------------------------- /003-SectionEncrypt/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/proguard-project.txt -------------------------------------------------------------------------------- /003-SectionEncrypt/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/project.properties -------------------------------------------------------------------------------- /003-SectionEncrypt/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-SectionEncrypt/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/res/layout/main.xml -------------------------------------------------------------------------------- /003-SectionEncrypt/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/res/values/strings.xml -------------------------------------------------------------------------------- /003-SectionEncrypt/src/com/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/003-SectionEncrypt/src/com/demo/MainActivity.java -------------------------------------------------------------------------------- /004-MethodEncrypt/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/.classpath -------------------------------------------------------------------------------- /004-MethodEncrypt/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/.project -------------------------------------------------------------------------------- /004-MethodEncrypt/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/AndroidManifest.xml -------------------------------------------------------------------------------- /004-MethodEncrypt/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/README.txt -------------------------------------------------------------------------------- /004-MethodEncrypt/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/ant.properties -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/AndroidManifest.xml.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/AndroidManifest.xml.d -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/NdkDemo1-debug-unaligned.apk.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/NdkDemo1-debug-unaligned.apk.d -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/NdkDemo1.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/NdkDemo1.ap_ -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/NdkDemo1.ap_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/NdkDemo1.ap_.d -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/build.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/build.prop -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/classes.dex -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/classes.dex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/classes.dex.d -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/proguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/proguard.txt -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/build.xml -------------------------------------------------------------------------------- /004-MethodEncrypt/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/gen/R.java.d -------------------------------------------------------------------------------- /004-MethodEncrypt/gen/com/demo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/gen/com/demo/BuildConfig.java -------------------------------------------------------------------------------- /004-MethodEncrypt/gen/com/demo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/gen/com/demo/R.java -------------------------------------------------------------------------------- /004-MethodEncrypt/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/jni/Android.mk -------------------------------------------------------------------------------- /004-MethodEncrypt/jni/com_demo_MainActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/jni/com_demo_MainActivity.h -------------------------------------------------------------------------------- /004-MethodEncrypt/jni/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/jni/demo.cpp -------------------------------------------------------------------------------- /004-MethodEncrypt/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/local.properties -------------------------------------------------------------------------------- /004-MethodEncrypt/obj/local/armeabi/libstdc++.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /004-MethodEncrypt/obj/local/armeabi/objs/demo/demo.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/obj/local/armeabi/objs/demo/demo.o.d -------------------------------------------------------------------------------- /004-MethodEncrypt/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/proguard-project.txt -------------------------------------------------------------------------------- /004-MethodEncrypt/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/project.properties -------------------------------------------------------------------------------- /004-MethodEncrypt/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-MethodEncrypt/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/res/layout/main.xml -------------------------------------------------------------------------------- /004-MethodEncrypt/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/res/values/strings.xml -------------------------------------------------------------------------------- /004-MethodEncrypt/src/com/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/004-MethodEncrypt/src/com/demo/MainActivity.java -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/AndroidManifest.xml -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/ant.properties -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/AndroidManifest.xml.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/AndroidManifest.xml.d -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/NdkDemo1-debug-unaligned.apk.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/NdkDemo1-debug-unaligned.apk.d -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/NdkDemo1.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/NdkDemo1.ap_ -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/NdkDemo1.ap_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/NdkDemo1.ap_.d -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/build.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/build.prop -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/classes.dex -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/classes.dex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/classes.dex.d -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/proguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/proguard.txt -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/build.xml -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/gen/R.java.d -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/gen/com/demo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/gen/com/demo/BuildConfig.java -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/gen/com/demo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/gen/com/demo/R.java -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/jni/Android.mk -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/jni/DexFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/jni/DexFile.h -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/jni/MiniDexFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/jni/MiniDexFile.h -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/jni/com_demo_MainActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/jni/com_demo_MainActivity.h -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/jni/demo1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/jni/demo1.cpp -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/jni/mycommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/jni/mycommon.h -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/libs/armeabi/gdb.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/libs/armeabi/gdb.setup -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/libs/armeabi/gdbserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/libs/armeabi/gdbserver -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/local.properties -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/obj/local/armeabi/libstdc++.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/obj/local/armeabi/objs-debug/demo1/demo1.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/obj/local/armeabi/objs-debug/demo1/demo1.o.d -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/proguard-project.txt -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/project.properties -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/res/layout/main.xml -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/res/values/strings.xml -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/src/com/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/src/com/demo/MainActivity.java -------------------------------------------------------------------------------- /005-Dalvik运行时篡改字节码/src/com/demo/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/005-Dalvik运行时篡改字节码/src/com/demo/Test.java -------------------------------------------------------------------------------- /006-通过hook重定向native方法/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/AndroidManifest.xml -------------------------------------------------------------------------------- /006-通过hook重定向native方法/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/ant.properties -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/AndroidManifest.xml.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/AndroidManifest.xml.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/NdkDemo1-debug-unaligned.apk.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/NdkDemo1-debug-unaligned.apk.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/NdkDemo1.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/NdkDemo1.ap_ -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/NdkDemo1.ap_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/NdkDemo1.ap_.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/build.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/build.prop -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/classes.dex -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/classes.dex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/classes.dex.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/proguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/proguard.txt -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/build.xml -------------------------------------------------------------------------------- /006-通过hook重定向native方法/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/gen/R.java.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/gen/com/demo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/gen/com/demo/BuildConfig.java -------------------------------------------------------------------------------- /006-通过hook重定向native方法/gen/com/demo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/gen/com/demo/R.java -------------------------------------------------------------------------------- /006-通过hook重定向native方法/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/jni/Android.mk -------------------------------------------------------------------------------- /006-通过hook重定向native方法/jni/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /006-通过hook重定向native方法/jni/com_demo_MainActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/jni/com_demo_MainActivity.h -------------------------------------------------------------------------------- /006-通过hook重定向native方法/jni/hackcodejiagu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/jni/hackcodejiagu.cpp -------------------------------------------------------------------------------- /006-通过hook重定向native方法/jni/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/jni/hello.cpp -------------------------------------------------------------------------------- /006-通过hook重定向native方法/jni/substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/jni/substrate.h -------------------------------------------------------------------------------- /006-通过hook重定向native方法/libs/armeabi/gdb.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/libs/armeabi/gdb.setup -------------------------------------------------------------------------------- /006-通过hook重定向native方法/libs/armeabi/gdbserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/libs/armeabi/gdbserver -------------------------------------------------------------------------------- /006-通过hook重定向native方法/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/local.properties -------------------------------------------------------------------------------- /006-通过hook重定向native方法/obj/local/armeabi/libstdc++.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /006-通过hook重定向native方法/obj/local/armeabi/objs-debug/demo1/demo1.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/obj/local/armeabi/objs-debug/demo1/demo1.o.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/obj/local/armeabi/objs-debug/hackcodejiagu/hackcodejiagu.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/obj/local/armeabi/objs-debug/hackcodejiagu/hackcodejiagu.o.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/obj/local/armeabi/objs-debug/hello/hello.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/obj/local/armeabi/objs-debug/hello/hello.o.d -------------------------------------------------------------------------------- /006-通过hook重定向native方法/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/proguard-project.txt -------------------------------------------------------------------------------- /006-通过hook重定向native方法/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/project.properties -------------------------------------------------------------------------------- /006-通过hook重定向native方法/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /006-通过hook重定向native方法/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/res/layout/main.xml -------------------------------------------------------------------------------- /006-通过hook重定向native方法/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/res/values/strings.xml -------------------------------------------------------------------------------- /006-通过hook重定向native方法/src/com/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/src/com/demo/MainActivity.java -------------------------------------------------------------------------------- /006-通过hook重定向native方法/src/com/demo/ProxyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/006-通过hook重定向native方法/src/com/demo/ProxyApplication.java -------------------------------------------------------------------------------- /007-动态注册native方法/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/AndroidManifest.xml -------------------------------------------------------------------------------- /007-动态注册native方法/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/ant.properties -------------------------------------------------------------------------------- /007-动态注册native方法/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /007-动态注册native方法/bin/AndroidManifest.xml.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/AndroidManifest.xml.d -------------------------------------------------------------------------------- /007-动态注册native方法/bin/NdkDemo1-debug-unaligned.apk.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/NdkDemo1-debug-unaligned.apk.d -------------------------------------------------------------------------------- /007-动态注册native方法/bin/NdkDemo1.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/NdkDemo1.ap_ -------------------------------------------------------------------------------- /007-动态注册native方法/bin/NdkDemo1.ap_.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/NdkDemo1.ap_.d -------------------------------------------------------------------------------- /007-动态注册native方法/bin/build.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/build.prop -------------------------------------------------------------------------------- /007-动态注册native方法/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/classes.dex -------------------------------------------------------------------------------- /007-动态注册native方法/bin/classes.dex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/classes.dex.d -------------------------------------------------------------------------------- /007-动态注册native方法/bin/proguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/proguard.txt -------------------------------------------------------------------------------- /007-动态注册native方法/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/build.xml -------------------------------------------------------------------------------- /007-动态注册native方法/gen/R.java.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/gen/R.java.d -------------------------------------------------------------------------------- /007-动态注册native方法/gen/com/demo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/gen/com/demo/BuildConfig.java -------------------------------------------------------------------------------- /007-动态注册native方法/gen/com/demo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/gen/com/demo/R.java -------------------------------------------------------------------------------- /007-动态注册native方法/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/jni/Android.mk -------------------------------------------------------------------------------- /007-动态注册native方法/jni/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/jni/demo.c -------------------------------------------------------------------------------- /007-动态注册native方法/libs/armeabi/disassemble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/libs/armeabi/disassemble.txt -------------------------------------------------------------------------------- /007-动态注册native方法/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/local.properties -------------------------------------------------------------------------------- /007-动态注册native方法/obj/local/armeabi/objs/demo/demo.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/obj/local/armeabi/objs/demo/demo.o.d -------------------------------------------------------------------------------- /007-动态注册native方法/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/proguard-project.txt -------------------------------------------------------------------------------- /007-动态注册native方法/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/project.properties -------------------------------------------------------------------------------- /007-动态注册native方法/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /007-动态注册native方法/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/res/layout/main.xml -------------------------------------------------------------------------------- /007-动态注册native方法/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/res/values/strings.xml -------------------------------------------------------------------------------- /007-动态注册native方法/src/com/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/007-动态注册native方法/src/com/demo/MainActivity.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/README.md -------------------------------------------------------------------------------- /shellTools/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/shellTools/elf.h -------------------------------------------------------------------------------- /shellTools/elf_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/shellTools/elf_parser.c -------------------------------------------------------------------------------- /shellTools/elf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/shellTools/elf_parser.h -------------------------------------------------------------------------------- /shellTools/elf_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/shellTools/elf_tools.c -------------------------------------------------------------------------------- /shellTools/elf_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/shellTools/elf_tools.h -------------------------------------------------------------------------------- /shellTools/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/shellTools/main.c -------------------------------------------------------------------------------- /shellTools/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanchao/AppProtect/HEAD/shellTools/makefile --------------------------------------------------------------------------------