├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app ├── build.gradle.kts ├── dictionary.txt ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── me │ │ └── hexile │ │ └── odexpatcher │ │ ├── adapters │ │ └── AppInfoAdapter.kt │ │ ├── art │ │ ├── Art.kt │ │ ├── ArtPatcher.kt │ │ ├── Dex2Oat.kt │ │ ├── oat │ │ │ ├── OatFile.kt │ │ │ └── OatHeader.kt │ │ └── vdex │ │ │ ├── VdexFile.kt │ │ │ └── VdexHeader.kt │ │ ├── core │ │ ├── App.kt │ │ ├── BaseFragment.kt │ │ ├── Const.kt │ │ ├── RandomString.kt │ │ ├── SELinux.kt │ │ └── utils │ │ │ └── MediaStoreUtils.kt │ │ ├── data │ │ └── AppInfo.kt │ │ ├── ktx │ │ ├── ActivityExt.kt │ │ ├── AndroidExt.kt │ │ ├── BytesExt.kt │ │ ├── CollectionsExt.kt │ │ ├── FilesExt.kt │ │ └── TimeExt.kt │ │ ├── receivers │ │ └── SecretCodeReceiver.kt │ │ ├── ui │ │ ├── activities │ │ │ ├── MainActivity.kt │ │ │ └── SplashActivity.kt │ │ └── fragments │ │ │ ├── AppSelectorFragment.kt │ │ │ └── HomeFragment.kt │ │ ├── utils │ │ ├── AppUtils.kt │ │ ├── Log.kt │ │ ├── LogUtils.kt │ │ ├── Utils.kt │ │ └── ViewUtils.kt │ │ ├── viewmodels │ │ └── MainViewModel.kt │ │ └── views │ │ └── MarginItemDecoration.kt │ └── res │ ├── anim │ ├── right_enter.xml │ ├── right_exit.xml │ ├── right_pop_enter.xml │ └── right_pop_exit.xml │ ├── drawable-nodpi │ ├── dalvik_to_art_step_1.png │ ├── dalvik_to_art_step_2.png │ ├── dalvik_to_art_step_3.png │ └── splash.png │ ├── drawable │ ├── ic_baseline_adb_24.xml │ ├── ic_baseline_healing_24.xml │ ├── ic_baseline_refresh_24.xml │ ├── ic_baseline_text_snippet_24.xml │ ├── ic_launcher_foreground.xml │ ├── ic_splash.xml │ └── ic_splash_vector.xml │ ├── layout │ ├── activity_main.xml │ ├── dialog_art_development_settings.xml │ ├── fragment_app_selector.xml │ ├── fragment_home.xml │ └── list_item_app.xml │ ├── menu │ ├── app_select_menu.xml │ └── home_menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── navigation │ └── nav_graph.xml │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── themes.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts ├── assets │ ├── me.hexile.sara.multidex │ │ ├── multidex-release-1000001-modded.apk │ │ └── multidex-release-1000001-original.apk │ └── me.hexile.sara.singletextview │ │ ├── singletextview-release-1000000-modded.apk │ │ └── singletextview-release-1000000-original.apk ├── prepare-device.sh ├── pull_oat_files.sh └── utils.sh └── settings.gradle.kts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/dictionary.txt -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/adapters/AppInfoAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/adapters/AppInfoAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/art/Art.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/art/Art.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/art/ArtPatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/art/ArtPatcher.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/art/Dex2Oat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/art/Dex2Oat.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/art/oat/OatFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/art/oat/OatFile.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/art/oat/OatHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/art/oat/OatHeader.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/art/vdex/VdexFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/art/vdex/VdexFile.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/art/vdex/VdexHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/art/vdex/VdexHeader.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/core/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/core/App.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/core/BaseFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/core/BaseFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/core/Const.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/core/Const.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/core/RandomString.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/core/RandomString.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/core/SELinux.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/core/SELinux.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/core/utils/MediaStoreUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/core/utils/MediaStoreUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/data/AppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/data/AppInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ktx/ActivityExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ktx/ActivityExt.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ktx/AndroidExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ktx/AndroidExt.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ktx/BytesExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ktx/BytesExt.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ktx/CollectionsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ktx/CollectionsExt.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ktx/FilesExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ktx/FilesExt.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ktx/TimeExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ktx/TimeExt.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/receivers/SecretCodeReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/receivers/SecretCodeReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ui/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ui/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ui/activities/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ui/activities/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ui/fragments/AppSelectorFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ui/fragments/AppSelectorFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/ui/fragments/HomeFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/ui/fragments/HomeFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/utils/AppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/utils/AppUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/utils/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/utils/Log.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/utils/LogUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/utils/LogUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/utils/Utils.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/utils/ViewUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/utils/ViewUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/viewmodels/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/viewmodels/MainViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/me/hexile/odexpatcher/views/MarginItemDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/java/me/hexile/odexpatcher/views/MarginItemDecoration.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/right_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/anim/right_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/right_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/anim/right_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/right_pop_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/anim/right_pop_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/right_pop_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/anim/right_pop_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/dalvik_to_art_step_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable-nodpi/dalvik_to_art_step_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/dalvik_to_art_step_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable-nodpi/dalvik_to_art_step_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/dalvik_to_art_step_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable-nodpi/dalvik_to_art_step_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable-nodpi/splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_adb_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable/ic_baseline_adb_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_healing_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable/ic_baseline_healing_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_refresh_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable/ic_baseline_refresh_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_text_snippet_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable/ic_baseline_text_snippet_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable/ic_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/drawable/ic_splash_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_art_development_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/layout/dialog_art_development_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_app_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/layout/fragment_app_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/layout/list_item_app.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/app_select_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/menu/app_select_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/home_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/menu/home_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/navigation/nav_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/navigation/nav_graph.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/gradlew.bat -------------------------------------------------------------------------------- /scripts/assets/me.hexile.sara.multidex/multidex-release-1000001-modded.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/scripts/assets/me.hexile.sara.multidex/multidex-release-1000001-modded.apk -------------------------------------------------------------------------------- /scripts/assets/me.hexile.sara.multidex/multidex-release-1000001-original.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/scripts/assets/me.hexile.sara.multidex/multidex-release-1000001-original.apk -------------------------------------------------------------------------------- /scripts/assets/me.hexile.sara.singletextview/singletextview-release-1000000-modded.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/scripts/assets/me.hexile.sara.singletextview/singletextview-release-1000000-modded.apk -------------------------------------------------------------------------------- /scripts/assets/me.hexile.sara.singletextview/singletextview-release-1000000-original.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/scripts/assets/me.hexile.sara.singletextview/singletextview-release-1000000-original.apk -------------------------------------------------------------------------------- /scripts/prepare-device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/scripts/prepare-device.sh -------------------------------------------------------------------------------- /scripts/pull_oat_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/scripts/pull_oat_files.sh -------------------------------------------------------------------------------- /scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/scripts/utils.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giacomoferretti/odex-patcher/HEAD/settings.gradle.kts --------------------------------------------------------------------------------