├── README.md ├── art ├── Android应用源代码的保护与破解.pdf ├── Android插件化-1.pdf ├── md_anim │ ├── Transition.gif │ ├── ciecular_reveal.gif │ ├── custom_wujie.gif │ ├── custom_youjie.gif │ ├── custom_youjie_mask.gif │ ├── selectableItemBackground.gif │ ├── selectableItemBackgroundBorderless.gif │ ├── shareelement.gif │ └── shareelement.png └── progressdrawable.gif ├── source_code ├── IntentWrapper.java ├── arsc_about │ └── arsc_decode │ │ ├── README.md │ │ ├── constants.py │ │ ├── constants.pyc │ │ ├── parse.py │ │ ├── res │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── res_struct.py │ │ └── res_struct.pyc │ │ └── test ├── databinding │ └── CheckBoxBindingAdapter.java ├── hotfix_about │ └── hotfixdemo │ │ ├── .externalNativeBuild │ │ └── cmake │ │ │ ├── debug │ │ │ └── armeabi │ │ │ │ ├── .ninja_deps │ │ │ │ ├── .ninja_log │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ ├── CMakeOutput.log │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ └── native-lib.dir │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── cpp │ │ │ │ │ └── native-lib.cpp.o │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── build.ninja │ │ │ │ ├── cmake_build_command.txt │ │ │ │ ├── cmake_build_output.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── rules.ninja │ │ │ └── release │ │ │ └── armeabi │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── TargetDirectories.txt │ │ │ └── cmake.check_cache │ │ │ ├── android_gradle_build.json │ │ │ ├── build.ninja │ │ │ ├── cmake_build_command.txt │ │ │ ├── cmake_build_output.txt │ │ │ ├── cmake_install.cmake │ │ │ └── rules.ninja │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── hotfixdemo.iml │ │ ├── proguard-rules.pro │ │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── guolei │ │ │ └── hotfixdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ └── native-lib.cpp │ │ ├── java │ │ │ └── com │ │ │ │ ├── guolei │ │ │ │ └── hotfixdemo │ │ │ │ │ ├── Log.java │ │ │ │ │ ├── LogFix.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MethodSizeCase.java │ │ │ │ │ ├── MyApplication.java │ │ │ │ │ ├── PatchResource.java │ │ │ │ │ ├── PatchSo.java │ │ │ │ │ ├── ReplaceUtil.java │ │ │ │ │ └── User.java │ │ │ │ └── tmall │ │ │ │ └── wireless │ │ │ │ └── jandfix │ │ │ │ ├── Constants.java │ │ │ │ ├── IMethodReplace.java │ │ │ │ ├── IMethodSize.java │ │ │ │ ├── MethodReplace5_0.java │ │ │ │ ├── MethodReplace5_1.java │ │ │ │ ├── MethodReplace6_0.java │ │ │ │ ├── MethodReplaceArt4_0.java │ │ │ │ ├── MethodReplaceDalvik4_0.java │ │ │ │ ├── MethodReplaceProxy.java │ │ │ │ ├── MethodSize5_1.java │ │ │ │ ├── MethodSize6_0.java │ │ │ │ ├── MethodSizeCase.java │ │ │ │ ├── MethodSizeUtils.java │ │ │ │ └── UnsafeProxy.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── guolei │ │ └── hotfixdemo │ │ └── ExampleUnitTest.java ├── nestedscroll │ └── StickNavLayout.java ├── plugin_about │ ├── Android插件化-1.pdf │ ├── Android插件化-2.pdf │ ├── README.md │ ├── plugin_1.apk │ ├── plugin_1 │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── plugin_1.iml │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── guolei │ │ │ │ └── plugin_1 │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── guolei │ │ │ │ │ └── plugin_1 │ │ │ │ │ ├── People.java │ │ │ │ │ ├── PluginActivity.java │ │ │ │ │ ├── PluginContentProvider.java │ │ │ │ │ └── PluginReceiver.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_plugin.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── guolei │ │ │ └── plugin_1 │ │ │ └── ExampleUnitTest.java │ ├── plugin_so.apk │ ├── plugin_so │ │ ├── .externalNativeBuild │ │ │ └── cmake │ │ │ │ ├── debug │ │ │ │ └── armeabi │ │ │ │ │ ├── .ninja_deps │ │ │ │ │ ├── .ninja_log │ │ │ │ │ ├── CMakeCache.txt │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ │ ├── CMakeOutput.log │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ └── native-lib.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── cpp │ │ │ │ │ │ └── native-lib.cpp.o │ │ │ │ │ ├── android_gradle_build.json │ │ │ │ │ ├── build.ninja │ │ │ │ │ ├── cmake_build_command.txt │ │ │ │ │ ├── cmake_build_output.txt │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── rules.ninja │ │ │ │ └── release │ │ │ │ └── armeabi │ │ │ │ ├── .ninja_deps │ │ │ │ ├── .ninja_log │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ ├── 3.6.0-rc2 │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ │ └── CMakeSystem.cmake │ │ │ │ ├── CMakeOutput.log │ │ │ │ ├── TargetDirectories.txt │ │ │ │ ├── cmake.check_cache │ │ │ │ └── native-lib.dir │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── cpp │ │ │ │ │ └── native-lib.cpp.o │ │ │ │ ├── android_gradle_build.json │ │ │ │ ├── build.ninja │ │ │ │ ├── cmake_build_command.txt │ │ │ │ ├── cmake_build_output.txt │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── rules.ninja │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── plugin_so.iml │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── guolei │ │ │ │ └── plugin_so │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ │ └── native-lib.cpp │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── guolei │ │ │ │ │ └── so │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_plugin.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── guolei │ │ │ └── plugin_so │ │ │ └── ExampleUnitTest.java │ ├── plugindemo-release-unsigned.apk │ ├── plugindemo │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── plugindemo.iml │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── guolei │ │ │ │ └── plugindemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── guolei │ │ │ │ │ └── plugindemo │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── DelegateContentProvider.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MyApplication.java │ │ │ │ │ ├── StubService.java │ │ │ │ │ ├── TestService.java │ │ │ │ │ ├── TwoActivity.java │ │ │ │ │ ├── binderhook │ │ │ │ │ └── BinderHookHandler.java │ │ │ │ │ └── core │ │ │ │ │ ├── ActivityManagerProxy.java │ │ │ │ │ └── HookInstrumentation.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_two.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── guolei │ │ │ └── plugindemo │ │ │ └── ExampleUnitTest.java │ └── simpledex.jar └── simplerecyclerviewadapter │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── simplerecyclerviewadapter.iml │ └── src │ ├── androidTest │ └── java │ │ └── guolei │ │ └── com │ │ └── simplerecyclerviewadapter │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ ├── guolei │ │ │ └── com │ │ │ │ └── simplerecyclerviewadapter │ │ │ │ ├── Item1.java │ │ │ │ ├── Item2.java │ │ │ │ ├── Item3.java │ │ │ │ ├── ItemEmpty.java │ │ │ │ └── MainActivity.java │ │ └── simpleadapter │ │ │ ├── BaseItem.java │ │ │ ├── BaseViewHolder.java │ │ │ └── SimpleRecyclerViewAdapter.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── item_1.xml │ │ ├── item_2.xml │ │ ├── item_3.xml │ │ ├── item_4.xml │ │ └── item_empty.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── guolei │ └── com │ └── simplerecyclerviewadapter │ └── ExampleUnitTest.java └── xposed_about ├── Android最强黑科技-Xposed.pdf └── out-dex2jar.jar /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/README.md -------------------------------------------------------------------------------- /art/Android应用源代码的保护与破解.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/Android应用源代码的保护与破解.pdf -------------------------------------------------------------------------------- /art/Android插件化-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/Android插件化-1.pdf -------------------------------------------------------------------------------- /art/md_anim/Transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/Transition.gif -------------------------------------------------------------------------------- /art/md_anim/ciecular_reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/ciecular_reveal.gif -------------------------------------------------------------------------------- /art/md_anim/custom_wujie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/custom_wujie.gif -------------------------------------------------------------------------------- /art/md_anim/custom_youjie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/custom_youjie.gif -------------------------------------------------------------------------------- /art/md_anim/custom_youjie_mask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/custom_youjie_mask.gif -------------------------------------------------------------------------------- /art/md_anim/selectableItemBackground.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/selectableItemBackground.gif -------------------------------------------------------------------------------- /art/md_anim/selectableItemBackgroundBorderless.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/selectableItemBackgroundBorderless.gif -------------------------------------------------------------------------------- /art/md_anim/shareelement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/shareelement.gif -------------------------------------------------------------------------------- /art/md_anim/shareelement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/md_anim/shareelement.png -------------------------------------------------------------------------------- /art/progressdrawable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/art/progressdrawable.gif -------------------------------------------------------------------------------- /source_code/IntentWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/IntentWrapper.java -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/README.md: -------------------------------------------------------------------------------- 1 | ### 解析ARSC的python脚本 2 | 3 | 目前还有点问题 4 | 5 | 参考的尼古拉斯赵四的java版解析 -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/arsc_about/arsc_decode/constants.py -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/arsc_about/arsc_decode/constants.pyc -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/arsc_about/arsc_decode/parse.py -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/res/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: UTF-8 -*- 3 | -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/res/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/arsc_about/arsc_decode/res/__init__.pyc -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/res/res_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/arsc_about/arsc_decode/res/res_struct.py -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/res/res_struct.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/arsc_about/arsc_decode/res/res_struct.pyc -------------------------------------------------------------------------------- /source_code/arsc_about/arsc_decode/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/arsc_about/arsc_decode/test -------------------------------------------------------------------------------- /source_code/databinding/CheckBoxBindingAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/databinding/CheckBoxBindingAdapter.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/.ninja_deps -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/.ninja_log -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeCache.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/android_gradle_build.json -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/build.ninja -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/cmake_build_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/cmake_build_command.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/cmake_build_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/cmake_build_output.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/cmake_install.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/debug/armeabi/rules.ninja -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeCache.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/android_gradle_build.json -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/build.ninja -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/cmake_build_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/cmake_build_command.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/cmake_build_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/cmake_build_output.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/cmake_install.cmake -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/.externalNativeBuild/cmake/release/armeabi/rules.ninja -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/CMakeLists.txt -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/build.gradle -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/hotfixdemo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/hotfixdemo.iml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/proguard-rules.pro -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/androidTest/java/com/guolei/hotfixdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/androidTest/java/com/guolei/hotfixdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/Log.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/LogFix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/LogFix.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/MainActivity.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/MethodSizeCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/MethodSizeCase.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/MyApplication.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/PatchResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/PatchResource.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/PatchSo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/PatchSo.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/ReplaceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/ReplaceUtil.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/guolei/hotfixdemo/User.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/Constants.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/IMethodReplace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/IMethodReplace.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/IMethodSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/IMethodSize.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplace5_0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplace5_0.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplace5_1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplace5_1.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplace6_0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplace6_0.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplaceArt4_0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplaceArt4_0.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplaceDalvik4_0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplaceDalvik4_0.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplaceProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodReplaceProxy.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSize5_1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSize5_1.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSize6_0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSize6_0.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSizeCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSizeCase.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSizeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/MethodSizeUtils.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/UnsafeProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/java/com/tmall/wireless/jandfix/UnsafeProxy.java -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /source_code/hotfix_about/hotfixdemo/src/test/java/com/guolei/hotfixdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/hotfix_about/hotfixdemo/src/test/java/com/guolei/hotfixdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /source_code/nestedscroll/StickNavLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/nestedscroll/StickNavLayout.java -------------------------------------------------------------------------------- /source_code/plugin_about/Android插件化-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/Android插件化-1.pdf -------------------------------------------------------------------------------- /source_code/plugin_about/Android插件化-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/Android插件化-2.pdf -------------------------------------------------------------------------------- /source_code/plugin_about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/README.md -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1.apk -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/build.gradle -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/plugin_1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/plugin_1.iml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/proguard-rules.pro -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/androidTest/java/com/guolei/plugin_1/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/androidTest/java/com/guolei/plugin_1/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/People.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/People.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/PluginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/PluginActivity.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/PluginContentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/PluginContentProvider.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/PluginReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/java/com/guolei/plugin_1/PluginReceiver.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/layout/activity_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/layout/activity_plugin.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_1/src/test/java/com/guolei/plugin_1/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_1/src/test/java/com/guolei/plugin_1/ExampleUnitTest.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so.apk -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/.ninja_deps -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/.ninja_log -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeCache.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/android_gradle_build.json -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/build.ninja -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/cmake_build_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/cmake_build_command.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/cmake_build_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/cmake_build_output.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/cmake_install.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/debug/armeabi/rules.ninja -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/.ninja_deps -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/.ninja_log -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeCache.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/3.6.0-rc2/CMakeSystem.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/CMakeFiles/native-lib.dir/src/main/cpp/native-lib.cpp.o -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/android_gradle_build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/android_gradle_build.json -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/build.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/build.ninja -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/cmake_build_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/cmake_build_command.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/cmake_build_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/cmake_build_output.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/cmake_install.cmake -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/.externalNativeBuild/cmake/release/armeabi/rules.ninja -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/CMakeLists.txt -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/build.gradle -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/plugin_so.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/plugin_so.iml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/proguard-rules.pro -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/androidTest/java/com/guolei/plugin_so/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/androidTest/java/com/guolei/plugin_so/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/java/com/guolei/so/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/java/com/guolei/so/MainActivity.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/layout/activity_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/layout/activity_plugin.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugin_so/src/test/java/com/guolei/plugin_so/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugin_so/src/test/java/com/guolei/plugin_so/ExampleUnitTest.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo-release-unsigned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo-release-unsigned.apk -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/build.gradle -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/plugindemo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/plugindemo.iml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/proguard-rules.pro -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/androidTest/java/com/guolei/plugindemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/androidTest/java/com/guolei/plugindemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/Constants.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/DelegateContentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/DelegateContentProvider.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/MainActivity.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/MyApplication.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/StubService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/StubService.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/TestService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/TestService.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/TwoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/TwoActivity.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/binderhook/BinderHookHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/binderhook/BinderHookHandler.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/core/ActivityManagerProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/core/ActivityManagerProxy.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/core/HookInstrumentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/java/com/guolei/plugindemo/core/HookInstrumentation.java -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/layout/activity_two.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/layout/activity_two.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /source_code/plugin_about/plugindemo/src/test/java/com/guolei/plugindemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/plugindemo/src/test/java/com/guolei/plugindemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /source_code/plugin_about/simpledex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/plugin_about/simpledex.jar -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/build.gradle -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/proguard-rules.pro -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/simplerecyclerviewadapter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/simplerecyclerviewadapter.iml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/androidTest/java/guolei/com/simplerecyclerviewadapter/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/androidTest/java/guolei/com/simplerecyclerviewadapter/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/Item1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/Item1.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/Item2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/Item2.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/Item3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/Item3.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/ItemEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/ItemEmpty.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/guolei/com/simplerecyclerviewadapter/MainActivity.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/simpleadapter/BaseItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/simpleadapter/BaseItem.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/simpleadapter/BaseViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/simpleadapter/BaseViewHolder.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/java/simpleadapter/SimpleRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/java/simpleadapter/SimpleRecyclerViewAdapter.java -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/layout/item_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/layout/item_1.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/layout/item_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/layout/item_2.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/layout/item_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/layout/item_3.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/layout/item_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/layout/item_4.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/layout/item_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/layout/item_empty.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /source_code/simplerecyclerviewadapter/src/test/java/guolei/com/simplerecyclerviewadapter/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/source_code/simplerecyclerviewadapter/src/test/java/guolei/com/simplerecyclerviewadapter/ExampleUnitTest.java -------------------------------------------------------------------------------- /xposed_about/Android最强黑科技-Xposed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/xposed_about/Android最强黑科技-Xposed.pdf -------------------------------------------------------------------------------- /xposed_about/out-dex2jar.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guolei1130/blog_resource/HEAD/xposed_about/out-dex2jar.jar --------------------------------------------------------------------------------