├── .gitignore ├── Manager ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── hepta │ │ └── rxposed │ │ └── manager │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ └── hepta │ │ │ └── rxposed │ │ │ └── manager │ │ │ └── IRxposedService.aidl │ ├── assets │ │ ├── Inject.sh │ │ ├── magiskpolicy │ │ └── rxposed.te │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── TraverseSo.cpp │ │ ├── TraverseSo.h │ │ ├── check.cpp │ │ ├── rxposed │ │ │ ├── Android.mk │ │ │ ├── Application.mk │ │ │ ├── CMakeLists.txt │ │ │ ├── android11_hook.cpp │ │ │ ├── android11_hook.h │ │ │ ├── android12_hook.cpp │ │ │ ├── android12_hook.h │ │ │ ├── android14_hook.cpp │ │ │ ├── android14_hook.h │ │ │ ├── android_shm.cpp │ │ │ ├── android_shm.h │ │ │ ├── android_util_api.cpp │ │ │ ├── android_util_api.h │ │ │ ├── artmethod_native_hook.cpp │ │ │ ├── artmethod_native_hook.h │ │ │ ├── hideload │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── elf_symbol_resolver.cpp │ │ │ │ ├── elf_symbol_resolver.h │ │ │ │ ├── entry.cpp │ │ │ │ ├── entry.h │ │ │ │ ├── jni_hook.cpp │ │ │ │ ├── jni_hook.h │ │ │ │ ├── linked_list.h │ │ │ │ ├── linker.cpp │ │ │ │ ├── linker.h │ │ │ │ ├── linker_common_types.h │ │ │ │ ├── linker_debug.cpp │ │ │ │ ├── linker_debug.h │ │ │ │ ├── linker_gnu_hash.h │ │ │ │ ├── linker_mapped_file_fragment.cpp │ │ │ │ ├── linker_mapped_file_fragment.h │ │ │ │ ├── linker_namespaces.h │ │ │ │ ├── linker_phdr.cpp │ │ │ │ ├── linker_phdr.h │ │ │ │ ├── linker_reloc_iterators.h │ │ │ │ ├── linker_relocate.cpp │ │ │ │ ├── linker_relocate.h │ │ │ │ ├── linker_sleb128.h │ │ │ │ ├── linker_soinfo.cpp │ │ │ │ ├── linker_soinfo.h │ │ │ │ ├── linker_symbol.cpp │ │ │ │ ├── linker_symbol.h │ │ │ │ ├── linker_utils.cpp │ │ │ │ ├── linker_utils.h │ │ │ │ ├── linker_version.cpp │ │ │ │ ├── linker_version.h │ │ │ │ ├── miniz.c │ │ │ │ ├── miniz.h │ │ │ │ ├── soinfo_11_transform.cpp │ │ │ │ ├── soinfo_11_transform.h │ │ │ │ ├── soinfo_121_transform.cpp │ │ │ │ ├── soinfo_121_transform.h │ │ │ │ ├── soinfo_12L_transform.cpp │ │ │ │ ├── soinfo_12L_transform.h │ │ │ │ ├── soinfo_12_transform.cpp │ │ │ │ ├── soinfo_12_transform.h │ │ │ │ └── user_system.h │ │ │ ├── ptrace_entry.cpp │ │ │ ├── rprocess.cpp │ │ │ └── rprocess.h │ │ └── test.cpp │ ├── ic_rxmlauncher-playstore.png │ ├── java │ │ └── hepta │ │ │ └── rxposed │ │ │ └── manager │ │ │ ├── MainActivity.kt │ │ │ ├── PackageChangeReceiver.java │ │ │ ├── RxposedApp.java │ │ │ ├── fragment │ │ │ ├── HelpLogFragment.kt │ │ │ ├── HomeFragment.kt │ │ │ ├── InjectPlug │ │ │ │ ├── PlugFragment.kt │ │ │ │ └── PlugListAdapter.java │ │ │ ├── LoadModule │ │ │ │ ├── AppInfoAdapter.java │ │ │ │ ├── AppsFragment.kt │ │ │ │ ├── ModuleFragment.kt │ │ │ │ └── ModuleListAdapter.java │ │ │ ├── SettingsFragment.kt │ │ │ ├── base │ │ │ │ ├── AppItemInfo.java │ │ │ │ └── SingApplist.kt │ │ │ ├── check │ │ │ │ ├── ItemBean.java │ │ │ │ ├── RecyclerViewAdapter.java │ │ │ │ └── checkFragment.java │ │ │ └── process │ │ │ │ ├── ProcessFragment.kt │ │ │ │ ├── ProcessListAdapter.java │ │ │ │ ├── UIDPorcessItem.java │ │ │ │ └── processInfo │ │ │ │ ├── ProcessInfoFragment.kt │ │ │ │ └── usprocInfoAdapter.java │ │ │ ├── service │ │ │ ├── RxConfigProvider.java │ │ │ └── RxConfigService.java │ │ │ ├── util │ │ │ ├── CheckTool.java │ │ │ ├── CheckTool11.java │ │ │ ├── CheckTool12.java │ │ │ ├── CheckTool14.java │ │ │ ├── Consts.java │ │ │ ├── InjectConfig.java │ │ │ ├── InjectTool.java │ │ │ ├── LogFileHelper.java │ │ │ └── MmkvManager.kt │ │ │ └── widget │ │ │ └── DialogUtil.kt │ └── res │ │ ├── anim │ │ ├── fade_in.xml │ │ ├── fade_out.xml │ │ ├── slide_in_left.xml │ │ ├── slide_in_right.xml │ │ ├── slide_out_left.xml │ │ └── slide_out_right.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── check_error.xml │ │ ├── check_ok.xml │ │ ├── ic_action_done.xml │ │ ├── ic_android.xml │ │ ├── ic_check_circle.xml │ │ ├── ic_clear.xml │ │ ├── ic_elipsis.xml │ │ ├── ic_enter.xml │ │ ├── ic_error.xml │ │ ├── ic_help.xml │ │ ├── ic_home.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_more.xml │ │ ├── ic_open_application.xml │ │ ├── ic_rxmlauncher_background.xml │ │ ├── ic_search.xml │ │ ├── ic_settings.xml │ │ ├── ic_shopping_cart_white.xml │ │ ├── ic_sync.xml │ │ ├── ic_warning.xml │ │ └── toolbar_back.xml │ │ ├── layout │ │ ├── activity_navigation.xml │ │ ├── custom_view.xml │ │ ├── dialog_applist.xml │ │ ├── flow_step_one_fragment.xml │ │ ├── flow_step_two_fragment.xml │ │ ├── fragment_applist.xml │ │ ├── fragment_check.xml │ │ ├── fragment_config.xml │ │ ├── fragment_frameworks.xml │ │ ├── fragment_helplog.xml │ │ ├── fragment_home.xml │ │ ├── fragment_modules.xml │ │ ├── fragment_settings.xml │ │ ├── fragment_userprocess.xml │ │ ├── item_application.xml │ │ ├── item_check_status.xml │ │ ├── item_inject_user.xml │ │ ├── item_inject_usproc.xml │ │ ├── item_module.xml │ │ ├── item_radioframe.xml │ │ ├── list_first.xml │ │ ├── list_small_major_item.xml │ │ ├── nav_view_header.xml │ │ ├── processlist_fragment.xml │ │ ├── recycle_head_switchbar.xml │ │ └── shopping_fragment.xml │ │ ├── menu │ │ ├── applist_main_menu.xml │ │ ├── bottom_nav_menu.xml │ │ ├── injetc_menu.xml │ │ ├── log_menu.xml │ │ ├── main_menu.xml │ │ ├── nav_drawer_menu.xml │ │ ├── other_menu.xml │ │ ├── overflow_menu.xml │ │ ├── plug_inject.xml │ │ ├── setting_menu.xml │ │ └── sync.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_round.xml │ │ ├── ic_rxmlauncher.xml │ │ └── ic_rxmlauncher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_rxmlauncher.png │ │ ├── ic_rxmlauncher_foreground.png │ │ └── ic_rxmlauncher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_rxmlauncher.png │ │ ├── ic_rxmlauncher_foreground.png │ │ └── ic_rxmlauncher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_rxmlauncher.png │ │ ├── ic_rxmlauncher_foreground.png │ │ └── ic_rxmlauncher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_rxmlauncher.png │ │ ├── ic_rxmlauncher_foreground.png │ │ └── ic_rxmlauncher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_rxmlauncher.png │ │ ├── ic_rxmlauncher_foreground.png │ │ └── ic_rxmlauncher_round.png │ │ ├── navigation │ │ └── mobile_navigation.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── hepta │ └── rxposed │ └── manager │ └── ExampleUnitTest.java ├── README.md ├── Tool ├── .gitignore ├── README.md ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── hepta │ │ └── rxposed │ │ └── rxposedtool │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── generalInjectTool │ │ │ ├── CMakeLists.txt │ │ │ ├── InjectTool.cpp │ │ │ ├── PtraceInject.h │ │ │ ├── PtraceUtils.h │ │ │ └── Utils.h │ │ ├── initInjectLib │ │ │ ├── CMakeLists.txt │ │ │ └── initInjectLib.cpp │ │ ├── initProcInjectTool │ │ │ ├── CMakeLists.txt │ │ │ ├── GetRemoteProcFun.h │ │ │ ├── InjectTool.cpp │ │ │ ├── PtraceInject.h │ │ │ ├── PtraceUtils.h │ │ │ ├── Utils.h │ │ │ ├── elf_symbol_resolver.cpp │ │ │ └── elf_symbol_resolver.h │ │ ├── mntSh │ │ │ ├── CMakeLists.txt │ │ │ └── mntSh.cpp │ │ ├── mprop │ │ │ ├── CMakeLists.txt │ │ │ └── inject.cpp │ │ └── rxposedtool.cpp │ └── java │ │ └── hepta │ │ └── rxposed │ │ └── rxposedtool │ │ └── NativeLib.kt │ └── test │ └── java │ └── hepta │ └── rxposed │ └── rxposedtool │ └── ExampleUnitTest.kt ├── document ├── ActivityThread Proxy.md ├── InstantRun.png ├── android10.md ├── android11_appsfilter.md ├── doc2.md ├── images │ ├── 1.png │ ├── 10.png │ ├── 2.jpg │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── start.jpg │ └── wx.jpg └── instructions.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hiddenapistubs ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── hepta │ │ └── rxposed │ │ └── hiddenapistubs │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── android │ │ ├── app │ │ ├── ActivityThread.java │ │ ├── ContextImpl.java │ │ └── LoadedApk.java │ │ ├── content │ │ ├── pm │ │ │ └── PackageParser.java │ │ └── res │ │ │ ├── AssetManager.java │ │ │ ├── CompatibilityInfo.java │ │ │ ├── Resources.java │ │ │ └── TypedArray.java │ │ └── os │ │ ├── SELinux.java │ │ └── ServiceManager.java │ └── test │ └── java │ └── hepta │ └── rxposed │ └── hiddenapistubs │ └── ExampleUnitTest.java ├── loadxposed ├── .gitignore ├── README.md ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── hepta │ │ └── rxposed │ │ └── loadxposed │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── hepta │ │ │ └── rxposed │ │ │ └── loadxposed │ │ │ ├── HookMain.java │ │ │ ├── MainActivity.kt │ │ │ ├── MyApp.java │ │ │ ├── RxConfigProvider.java │ │ │ ├── SdkPrivacy.java │ │ │ ├── Util.java │ │ │ ├── XposedEntry.java │ │ │ └── ui │ │ │ ├── dashboard │ │ │ ├── DashboardFragment.kt │ │ │ └── DashboardViewModel.kt │ │ │ ├── home │ │ │ ├── AppInfoAdapter.java │ │ │ ├── AppInfoDataProvider.java │ │ │ ├── AppInfoNode.java │ │ │ ├── AppInfoNodeProvider.java │ │ │ ├── ExtenAppFragment.kt │ │ │ ├── ExtenDataProvider.java │ │ │ ├── ExtenListAdapter.java │ │ │ ├── HomeFragment.kt │ │ │ ├── HomeViewModel.kt │ │ │ ├── ModuleInfo.java │ │ │ └── ModuleInfoProvider.java │ │ │ └── notifications │ │ │ ├── NotificationsFragment.kt │ │ │ └── NotificationsViewModel.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_dashboard_black_24dp.xml │ │ ├── ic_elipsis.xml │ │ ├── ic_home_black_24dp.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_notifications_black_24dp.xml │ │ ├── ic_open_application.xml │ │ ├── ic_search.xml │ │ └── toolbar_back.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_navigation.xml │ │ ├── fragment_applist.xml │ │ ├── fragment_dashboard.xml │ │ ├── fragment_home.xml │ │ ├── fragment_notifications.xml │ │ ├── item_application.xml │ │ ├── item_module.xml │ │ └── recycle_head_switchbar.xml │ │ ├── menu │ │ ├── applist_main_menu.xml │ │ └── bottom_nav_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── navigation │ │ └── mobile_navigation.xml │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ └── test │ └── java │ └── hepta │ └── rxposed │ └── loadxposed │ └── ExampleUnitTest.kt ├── magisk-module-librxposed ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── customize.sh ├── magisk-module-librxposed.zip ├── module.prop ├── post-fs-data.sh ├── service.sh ├── system.prop └── system │ ├── bin │ └── ffmpeg │ ├── lib │ └── librxposed.so │ └── lib64 │ └── librxposed.so └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/.gitignore -------------------------------------------------------------------------------- /Manager/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Manager/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/build.gradle -------------------------------------------------------------------------------- /Manager/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/proguard-rules.pro -------------------------------------------------------------------------------- /Manager/src/androidTest/java/hepta/rxposed/manager/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/androidTest/java/hepta/rxposed/manager/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Manager/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Manager/src/main/aidl/hepta/rxposed/manager/IRxposedService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/aidl/hepta/rxposed/manager/IRxposedService.aidl -------------------------------------------------------------------------------- /Manager/src/main/assets/Inject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/assets/Inject.sh -------------------------------------------------------------------------------- /Manager/src/main/assets/magiskpolicy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/assets/magiskpolicy -------------------------------------------------------------------------------- /Manager/src/main/assets/rxposed.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/assets/rxposed.te -------------------------------------------------------------------------------- /Manager/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /Manager/src/main/cpp/TraverseSo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/TraverseSo.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/TraverseSo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/TraverseSo.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/check.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/Android.mk -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/Application.mk -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/CMakeLists.txt -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android11_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android11_hook.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android11_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android11_hook.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android12_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android12_hook.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android12_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android12_hook.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android14_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android14_hook.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android14_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android14_hook.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android_shm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android_shm.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android_shm.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android_util_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android_util_api.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/android_util_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/android_util_api.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/artmethod_native_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/artmethod_native_hook.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/artmethod_native_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/artmethod_native_hook.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/CMakeLists.txt -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/elf_symbol_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/elf_symbol_resolver.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/elf_symbol_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/elf_symbol_resolver.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/entry.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/entry.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/jni_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/jni_hook.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/jni_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/jni_hook.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linked_list.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_common_types.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_debug.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by chic on 2023/11/25. 3 | // 4 | -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_debug.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_gnu_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_gnu_hash.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_mapped_file_fragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_mapped_file_fragment.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_mapped_file_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_mapped_file_fragment.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_namespaces.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_phdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_phdr.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_phdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_phdr.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_reloc_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_reloc_iterators.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_relocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_relocate.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_relocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_relocate.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_sleb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_sleb128.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_soinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_soinfo.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_soinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_soinfo.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_symbol.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by thehepta on 2023/12/17. 3 | // 4 | -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_symbol.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_utils.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_utils.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_version.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/linker_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/linker_version.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/miniz.c -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/miniz.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_11_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_11_transform.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_11_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_11_transform.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_121_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_121_transform.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_121_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_121_transform.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_12L_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_12L_transform.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_12L_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_12L_transform.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_12_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_12_transform.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/soinfo_12_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/soinfo_12_transform.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/hideload/user_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/hideload/user_system.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/ptrace_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/ptrace_entry.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/rprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/rprocess.cpp -------------------------------------------------------------------------------- /Manager/src/main/cpp/rxposed/rprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/rxposed/rprocess.h -------------------------------------------------------------------------------- /Manager/src/main/cpp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/cpp/test.cpp -------------------------------------------------------------------------------- /Manager/src/main/ic_rxmlauncher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/ic_rxmlauncher-playstore.png -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/MainActivity.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/PackageChangeReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/PackageChangeReceiver.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/RxposedApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/RxposedApp.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/HelpLogFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/HelpLogFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/HomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/HomeFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/InjectPlug/PlugFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/InjectPlug/PlugFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/InjectPlug/PlugListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/InjectPlug/PlugListAdapter.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/AppInfoAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/AppInfoAdapter.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/AppsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/AppsFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/ModuleFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/ModuleFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/ModuleListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/LoadModule/ModuleListAdapter.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/SettingsFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/base/AppItemInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/base/AppItemInfo.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/base/SingApplist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/base/SingApplist.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/check/ItemBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/check/ItemBean.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/check/RecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/check/RecyclerViewAdapter.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/check/checkFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/check/checkFragment.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/process/ProcessFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/process/ProcessFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/process/ProcessListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/process/ProcessListAdapter.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/process/UIDPorcessItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/process/UIDPorcessItem.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/process/processInfo/ProcessInfoFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/process/processInfo/ProcessInfoFragment.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/fragment/process/processInfo/usprocInfoAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/fragment/process/processInfo/usprocInfoAdapter.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/service/RxConfigProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/service/RxConfigProvider.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/service/RxConfigService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/service/RxConfigService.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/CheckTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/CheckTool.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/CheckTool11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/CheckTool11.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/CheckTool12.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/CheckTool12.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/CheckTool14.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/CheckTool14.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/Consts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/Consts.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/InjectConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/InjectConfig.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/InjectTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/InjectTool.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/LogFileHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/LogFileHelper.java -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/util/MmkvManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/util/MmkvManager.kt -------------------------------------------------------------------------------- /Manager/src/main/java/hepta/rxposed/manager/widget/DialogUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/java/hepta/rxposed/manager/widget/DialogUtil.kt -------------------------------------------------------------------------------- /Manager/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /Manager/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /Manager/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/anim/slide_in_left.xml -------------------------------------------------------------------------------- /Manager/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /Manager/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/anim/slide_out_left.xml -------------------------------------------------------------------------------- /Manager/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/check_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/check_error.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/check_ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/check_ok.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_action_done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_action_done.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_android.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_check_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_check_circle.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_clear.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_elipsis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_elipsis.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_enter.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_home.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_more.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_open_application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_open_application.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_rxmlauncher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_rxmlauncher_background.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_shopping_cart_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_shopping_cart_white.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /Manager/src/main/res/drawable/toolbar_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/drawable/toolbar_back.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/activity_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/activity_navigation.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/custom_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/custom_view.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/dialog_applist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/dialog_applist.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/flow_step_one_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/flow_step_one_fragment.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/flow_step_two_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/flow_step_two_fragment.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_applist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_applist.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_check.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_config.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_frameworks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_frameworks.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_helplog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_helplog.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_modules.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_settings.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/fragment_userprocess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/fragment_userprocess.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/item_application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/item_application.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/item_check_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/item_check_status.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/item_inject_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/item_inject_user.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/item_inject_usproc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/item_inject_usproc.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/item_module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/item_module.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/item_radioframe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/item_radioframe.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/list_first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/list_first.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/list_small_major_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/list_small_major_item.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/nav_view_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/nav_view_header.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/processlist_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/processlist_fragment.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/recycle_head_switchbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/recycle_head_switchbar.xml -------------------------------------------------------------------------------- /Manager/src/main/res/layout/shopping_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/layout/shopping_fragment.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/applist_main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/applist_main_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/bottom_nav_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/injetc_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/injetc_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/log_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/log_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/nav_drawer_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/nav_drawer_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/other_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/other_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/overflow_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/overflow_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/plug_inject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/plug_inject.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/setting_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/setting_menu.xml -------------------------------------------------------------------------------- /Manager/src/main/res/menu/sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/menu/sync.xml -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-anydpi-v26/ic_rxmlauncher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-anydpi-v26/ic_rxmlauncher.xml -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-anydpi-v26/ic_rxmlauncher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-anydpi-v26/ic_rxmlauncher_round.xml -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-hdpi/ic_rxmlauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-hdpi/ic_rxmlauncher.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-hdpi/ic_rxmlauncher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-hdpi/ic_rxmlauncher_foreground.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-hdpi/ic_rxmlauncher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-hdpi/ic_rxmlauncher_round.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-mdpi/ic_rxmlauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-mdpi/ic_rxmlauncher.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-mdpi/ic_rxmlauncher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-mdpi/ic_rxmlauncher_foreground.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-mdpi/ic_rxmlauncher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-mdpi/ic_rxmlauncher_round.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xhdpi/ic_rxmlauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xhdpi/ic_rxmlauncher.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xhdpi/ic_rxmlauncher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xhdpi/ic_rxmlauncher_foreground.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xhdpi/ic_rxmlauncher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xhdpi/ic_rxmlauncher_round.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxhdpi/ic_rxmlauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxhdpi/ic_rxmlauncher.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxhdpi/ic_rxmlauncher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxhdpi/ic_rxmlauncher_foreground.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxhdpi/ic_rxmlauncher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxhdpi/ic_rxmlauncher_round.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxxhdpi/ic_rxmlauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxxhdpi/ic_rxmlauncher.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxxhdpi/ic_rxmlauncher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxxhdpi/ic_rxmlauncher_foreground.png -------------------------------------------------------------------------------- /Manager/src/main/res/mipmap-xxxhdpi/ic_rxmlauncher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/mipmap-xxxhdpi/ic_rxmlauncher_round.png -------------------------------------------------------------------------------- /Manager/src/main/res/navigation/mobile_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/navigation/mobile_navigation.xml -------------------------------------------------------------------------------- /Manager/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Manager/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /Manager/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Manager/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Manager/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Manager/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Manager/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /Manager/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /Manager/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /Manager/src/test/java/hepta/rxposed/manager/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Manager/src/test/java/hepta/rxposed/manager/ExampleUnitTest.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/README.md -------------------------------------------------------------------------------- /Tool/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/README.md -------------------------------------------------------------------------------- /Tool/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/build.gradle -------------------------------------------------------------------------------- /Tool/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tool/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/proguard-rules.pro -------------------------------------------------------------------------------- /Tool/src/androidTest/java/hepta/rxposed/rxposedtool/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/androidTest/java/hepta/rxposed/rxposedtool/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /Tool/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Tool/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /Tool/src/main/cpp/generalInjectTool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/generalInjectTool/CMakeLists.txt -------------------------------------------------------------------------------- /Tool/src/main/cpp/generalInjectTool/InjectTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/generalInjectTool/InjectTool.cpp -------------------------------------------------------------------------------- /Tool/src/main/cpp/generalInjectTool/PtraceInject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/generalInjectTool/PtraceInject.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/generalInjectTool/PtraceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/generalInjectTool/PtraceUtils.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/generalInjectTool/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/generalInjectTool/Utils.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/initInjectLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initInjectLib/CMakeLists.txt -------------------------------------------------------------------------------- /Tool/src/main/cpp/initInjectLib/initInjectLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initInjectLib/initInjectLib.cpp -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/CMakeLists.txt -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/GetRemoteProcFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/GetRemoteProcFun.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/InjectTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/InjectTool.cpp -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/PtraceInject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/PtraceInject.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/PtraceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/PtraceUtils.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/Utils.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/elf_symbol_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/elf_symbol_resolver.cpp -------------------------------------------------------------------------------- /Tool/src/main/cpp/initProcInjectTool/elf_symbol_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/initProcInjectTool/elf_symbol_resolver.h -------------------------------------------------------------------------------- /Tool/src/main/cpp/mntSh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/mntSh/CMakeLists.txt -------------------------------------------------------------------------------- /Tool/src/main/cpp/mntSh/mntSh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/mntSh/mntSh.cpp -------------------------------------------------------------------------------- /Tool/src/main/cpp/mprop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/mprop/CMakeLists.txt -------------------------------------------------------------------------------- /Tool/src/main/cpp/mprop/inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/mprop/inject.cpp -------------------------------------------------------------------------------- /Tool/src/main/cpp/rxposedtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/cpp/rxposedtool.cpp -------------------------------------------------------------------------------- /Tool/src/main/java/hepta/rxposed/rxposedtool/NativeLib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/main/java/hepta/rxposed/rxposedtool/NativeLib.kt -------------------------------------------------------------------------------- /Tool/src/test/java/hepta/rxposed/rxposedtool/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/Tool/src/test/java/hepta/rxposed/rxposedtool/ExampleUnitTest.kt -------------------------------------------------------------------------------- /document/ActivityThread Proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/ActivityThread Proxy.md -------------------------------------------------------------------------------- /document/InstantRun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/InstantRun.png -------------------------------------------------------------------------------- /document/android10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/android10.md -------------------------------------------------------------------------------- /document/android11_appsfilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/android11_appsfilter.md -------------------------------------------------------------------------------- /document/doc2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/doc2.md -------------------------------------------------------------------------------- /document/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/1.png -------------------------------------------------------------------------------- /document/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/10.png -------------------------------------------------------------------------------- /document/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/2.jpg -------------------------------------------------------------------------------- /document/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/3.png -------------------------------------------------------------------------------- /document/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/4.png -------------------------------------------------------------------------------- /document/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/5.png -------------------------------------------------------------------------------- /document/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/6.png -------------------------------------------------------------------------------- /document/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/7.png -------------------------------------------------------------------------------- /document/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/8.png -------------------------------------------------------------------------------- /document/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/9.png -------------------------------------------------------------------------------- /document/images/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/start.jpg -------------------------------------------------------------------------------- /document/images/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/images/wx.jpg -------------------------------------------------------------------------------- /document/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/document/instructions.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hiddenapistubs/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /hiddenapistubs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/build.gradle -------------------------------------------------------------------------------- /hiddenapistubs/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hiddenapistubs/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/proguard-rules.pro -------------------------------------------------------------------------------- /hiddenapistubs/src/androidTest/java/hepta/rxposed/hiddenapistubs/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/androidTest/java/hepta/rxposed/hiddenapistubs/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/app/ActivityThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/app/ActivityThread.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/app/ContextImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/app/ContextImpl.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/app/LoadedApk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/app/LoadedApk.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/content/pm/PackageParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/content/pm/PackageParser.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/content/res/AssetManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/content/res/AssetManager.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/content/res/CompatibilityInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/content/res/CompatibilityInfo.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/content/res/Resources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/content/res/Resources.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/content/res/TypedArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/content/res/TypedArray.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/os/SELinux.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/os/SELinux.java -------------------------------------------------------------------------------- /hiddenapistubs/src/main/java/android/os/ServiceManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/main/java/android/os/ServiceManager.java -------------------------------------------------------------------------------- /hiddenapistubs/src/test/java/hepta/rxposed/hiddenapistubs/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/hiddenapistubs/src/test/java/hepta/rxposed/hiddenapistubs/ExampleUnitTest.java -------------------------------------------------------------------------------- /loadxposed/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /loadxposed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/README.md -------------------------------------------------------------------------------- /loadxposed/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/build.gradle -------------------------------------------------------------------------------- /loadxposed/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/proguard-rules.pro -------------------------------------------------------------------------------- /loadxposed/src/androidTest/java/hepta/rxposed/loadxposed/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/androidTest/java/hepta/rxposed/loadxposed/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /loadxposed/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/HookMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/HookMain.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/MainActivity.kt -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/MyApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/MyApp.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/RxConfigProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/RxConfigProvider.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/SdkPrivacy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/SdkPrivacy.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/Util.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/XposedEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/XposedEntry.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/dashboard/DashboardFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/dashboard/DashboardFragment.kt -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/dashboard/DashboardViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/dashboard/DashboardViewModel.kt -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoAdapter.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoDataProvider.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoNode.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoNodeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/AppInfoNodeProvider.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ExtenAppFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ExtenAppFragment.kt -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ExtenDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ExtenDataProvider.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ExtenListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ExtenListAdapter.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/HomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/HomeFragment.kt -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/HomeViewModel.kt -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ModuleInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ModuleInfo.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ModuleInfoProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/home/ModuleInfoProvider.java -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/notifications/NotificationsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/notifications/NotificationsFragment.kt -------------------------------------------------------------------------------- /loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/notifications/NotificationsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/java/hepta/rxposed/loadxposed/ui/notifications/NotificationsViewModel.kt -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/ic_dashboard_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/ic_dashboard_black_24dp.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/ic_elipsis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/ic_elipsis.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/ic_home_black_24dp.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/ic_notifications_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/ic_notifications_black_24dp.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/ic_open_application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/ic_open_application.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/drawable/toolbar_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/drawable/toolbar_back.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/activity_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/activity_navigation.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/fragment_applist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/fragment_applist.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/fragment_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/fragment_dashboard.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/fragment_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/fragment_notifications.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/item_application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/item_application.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/item_module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/item_module.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/layout/recycle_head_switchbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/layout/recycle_head_switchbar.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/menu/applist_main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/menu/applist_main_menu.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/menu/bottom_nav_menu.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /loadxposed/src/main/res/navigation/mobile_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/navigation/mobile_navigation.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /loadxposed/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /loadxposed/src/test/java/hepta/rxposed/loadxposed/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/loadxposed/src/test/java/hepta/rxposed/loadxposed/ExampleUnitTest.kt -------------------------------------------------------------------------------- /magisk-module-librxposed/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /magisk-module-librxposed/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /magisk-module-librxposed/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/customize.sh -------------------------------------------------------------------------------- /magisk-module-librxposed/magisk-module-librxposed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/magisk-module-librxposed.zip -------------------------------------------------------------------------------- /magisk-module-librxposed/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/module.prop -------------------------------------------------------------------------------- /magisk-module-librxposed/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/post-fs-data.sh -------------------------------------------------------------------------------- /magisk-module-librxposed/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/service.sh -------------------------------------------------------------------------------- /magisk-module-librxposed/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/system.prop -------------------------------------------------------------------------------- /magisk-module-librxposed/system/bin/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/system/bin/ffmpeg -------------------------------------------------------------------------------- /magisk-module-librxposed/system/lib/librxposed.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/system/lib/librxposed.so -------------------------------------------------------------------------------- /magisk-module-librxposed/system/lib64/librxposed.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/magisk-module-librxposed/system/lib64/librxposed.so -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thehepta/rxposed/HEAD/settings.gradle --------------------------------------------------------------------------------