├── .gitignore ├── README.md ├── RobustHost ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ ├── RobustHost.apk │ ├── classes.dex │ ├── jarlist.cache │ ├── 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 │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── cn │ │ └── wjdiankong │ │ ├── robust │ │ ├── BuildConfig.java │ │ └── R.java │ │ └── robustpatch │ │ └── 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 │ └── cn │ └── wjdiankong │ └── robust │ ├── MainActivity.java │ ├── MainApplication.java │ ├── MoneyBean.java │ └── utils │ ├── Logger.java │ └── PatchProxy.java ├── RobustPatch ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ └── res │ │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png ├── gen │ └── cn │ │ └── wjdiankong │ │ └── robustpatch │ │ ├── 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 │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ └── strings.xml └── src │ └── cn │ └── wjdiankong │ └── patch │ ├── ChangeQuickRedirect.java │ ├── PatchedClassInfo.java │ └── PatchesInfo.java └── RobustPatchImpl ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin ├── AndroidManifest.xml ├── R.txt └── jarlist.cache ├── gen └── cn │ └── wjdiankong │ ├── robustpatch │ └── R.java │ └── robustpatchimpl │ ├── 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 └── values │ ├── dimens.xml │ └── strings.xml └── src └── cn └── wjdiankong └── patchimpl ├── MoneyBeanStatePatch.java └── PatchesInfoImpl.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/README.md -------------------------------------------------------------------------------- /RobustHost/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/.classpath -------------------------------------------------------------------------------- /RobustHost/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/.project -------------------------------------------------------------------------------- /RobustHost/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RobustHost/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/AndroidManifest.xml -------------------------------------------------------------------------------- /RobustHost/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /RobustHost/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/R.txt -------------------------------------------------------------------------------- /RobustHost/bin/RobustHost.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/RobustHost.apk -------------------------------------------------------------------------------- /RobustHost/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/classes.dex -------------------------------------------------------------------------------- /RobustHost/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/jarlist.cache -------------------------------------------------------------------------------- /RobustHost/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/bin/resources.ap_ -------------------------------------------------------------------------------- /RobustHost/gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/gen/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /RobustHost/gen/cn/wjdiankong/robust/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/gen/cn/wjdiankong/robust/BuildConfig.java -------------------------------------------------------------------------------- /RobustHost/gen/cn/wjdiankong/robust/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/gen/cn/wjdiankong/robust/R.java -------------------------------------------------------------------------------- /RobustHost/gen/cn/wjdiankong/robustpatch/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/gen/cn/wjdiankong/robustpatch/R.java -------------------------------------------------------------------------------- /RobustHost/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/ic_launcher-web.png -------------------------------------------------------------------------------- /RobustHost/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/proguard-project.txt -------------------------------------------------------------------------------- /RobustHost/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/project.properties -------------------------------------------------------------------------------- /RobustHost/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustHost/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/layout/activity_main.xml -------------------------------------------------------------------------------- /RobustHost/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/menu/main.xml -------------------------------------------------------------------------------- /RobustHost/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/values-v11/styles.xml -------------------------------------------------------------------------------- /RobustHost/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/values-v14/styles.xml -------------------------------------------------------------------------------- /RobustHost/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /RobustHost/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/values/dimens.xml -------------------------------------------------------------------------------- /RobustHost/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/values/strings.xml -------------------------------------------------------------------------------- /RobustHost/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/res/values/styles.xml -------------------------------------------------------------------------------- /RobustHost/src/cn/wjdiankong/robust/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/src/cn/wjdiankong/robust/MainActivity.java -------------------------------------------------------------------------------- /RobustHost/src/cn/wjdiankong/robust/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/src/cn/wjdiankong/robust/MainApplication.java -------------------------------------------------------------------------------- /RobustHost/src/cn/wjdiankong/robust/MoneyBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/src/cn/wjdiankong/robust/MoneyBean.java -------------------------------------------------------------------------------- /RobustHost/src/cn/wjdiankong/robust/utils/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/src/cn/wjdiankong/robust/utils/Logger.java -------------------------------------------------------------------------------- /RobustHost/src/cn/wjdiankong/robust/utils/PatchProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustHost/src/cn/wjdiankong/robust/utils/PatchProxy.java -------------------------------------------------------------------------------- /RobustPatch/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/.classpath -------------------------------------------------------------------------------- /RobustPatch/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/.project -------------------------------------------------------------------------------- /RobustPatch/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RobustPatch/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/AndroidManifest.xml -------------------------------------------------------------------------------- /RobustPatch/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /RobustPatch/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/bin/R.txt -------------------------------------------------------------------------------- /RobustPatch/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/gen/cn/wjdiankong/robustpatch/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/gen/cn/wjdiankong/robustpatch/BuildConfig.java -------------------------------------------------------------------------------- /RobustPatch/gen/cn/wjdiankong/robustpatch/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/gen/cn/wjdiankong/robustpatch/R.java -------------------------------------------------------------------------------- /RobustPatch/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/ic_launcher-web.png -------------------------------------------------------------------------------- /RobustPatch/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/proguard-project.txt -------------------------------------------------------------------------------- /RobustPatch/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/project.properties -------------------------------------------------------------------------------- /RobustPatch/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatch/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/layout/activity_main.xml -------------------------------------------------------------------------------- /RobustPatch/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /RobustPatch/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/values/dimens.xml -------------------------------------------------------------------------------- /RobustPatch/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/res/values/strings.xml -------------------------------------------------------------------------------- /RobustPatch/src/cn/wjdiankong/patch/ChangeQuickRedirect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/src/cn/wjdiankong/patch/ChangeQuickRedirect.java -------------------------------------------------------------------------------- /RobustPatch/src/cn/wjdiankong/patch/PatchedClassInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/src/cn/wjdiankong/patch/PatchedClassInfo.java -------------------------------------------------------------------------------- /RobustPatch/src/cn/wjdiankong/patch/PatchesInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatch/src/cn/wjdiankong/patch/PatchesInfo.java -------------------------------------------------------------------------------- /RobustPatchImpl/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/.classpath -------------------------------------------------------------------------------- /RobustPatchImpl/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/.project -------------------------------------------------------------------------------- /RobustPatchImpl/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RobustPatchImpl/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/AndroidManifest.xml -------------------------------------------------------------------------------- /RobustPatchImpl/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /RobustPatchImpl/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/bin/R.txt -------------------------------------------------------------------------------- /RobustPatchImpl/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/bin/jarlist.cache -------------------------------------------------------------------------------- /RobustPatchImpl/gen/cn/wjdiankong/robustpatch/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/gen/cn/wjdiankong/robustpatch/R.java -------------------------------------------------------------------------------- /RobustPatchImpl/gen/cn/wjdiankong/robustpatchimpl/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/gen/cn/wjdiankong/robustpatchimpl/BuildConfig.java -------------------------------------------------------------------------------- /RobustPatchImpl/gen/cn/wjdiankong/robustpatchimpl/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/gen/cn/wjdiankong/robustpatchimpl/R.java -------------------------------------------------------------------------------- /RobustPatchImpl/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/ic_launcher-web.png -------------------------------------------------------------------------------- /RobustPatchImpl/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/proguard-project.txt -------------------------------------------------------------------------------- /RobustPatchImpl/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/project.properties -------------------------------------------------------------------------------- /RobustPatchImpl/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatchImpl/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatchImpl/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatchImpl/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RobustPatchImpl/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/res/layout/activity_main.xml -------------------------------------------------------------------------------- /RobustPatchImpl/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/res/values/dimens.xml -------------------------------------------------------------------------------- /RobustPatchImpl/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/res/values/strings.xml -------------------------------------------------------------------------------- /RobustPatchImpl/src/cn/wjdiankong/patchimpl/MoneyBeanStatePatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/src/cn/wjdiankong/patchimpl/MoneyBeanStatePatch.java -------------------------------------------------------------------------------- /RobustPatchImpl/src/cn/wjdiankong/patchimpl/PatchesInfoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fourbrother/Robust/HEAD/RobustPatchImpl/src/cn/wjdiankong/patchimpl/PatchesInfoImpl.java --------------------------------------------------------------------------------