├── .classpath ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── assets ├── message.xml └── xposed_init ├── bin ├── AndroidManifest.xml ├── XposedHookDemo.apk ├── 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 └── cn │ └── wjdiankong │ └── xposedhook │ ├── 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_demo.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── cn └── wjdiankong └── xposedhook ├── HookAppAllMethod.java ├── MainActivity.java └── XposedInit.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/README.md -------------------------------------------------------------------------------- /assets/message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/assets/message.xml -------------------------------------------------------------------------------- /assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/assets/xposed_init -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/XposedHookDemo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/XposedHookDemo.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/cn/wjdiankong/xposedhook/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/gen/cn/wjdiankong/xposedhook/BuildConfig.java -------------------------------------------------------------------------------- /gen/cn/wjdiankong/xposedhook/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/gen/cn/wjdiankong/xposedhook/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/layout/activity_demo.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/cn/wjdiankong/xposedhook/HookAppAllMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/src/cn/wjdiankong/xposedhook/HookAppAllMethod.java -------------------------------------------------------------------------------- /src/cn/wjdiankong/xposedhook/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/src/cn/wjdiankong/xposedhook/MainActivity.java -------------------------------------------------------------------------------- /src/cn/wjdiankong/xposedhook/XposedInit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/XposedHookAllMethod/HEAD/src/cn/wjdiankong/xposedhook/XposedInit.java --------------------------------------------------------------------------------