├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── build_pull_request.yml │ ├── open_pull_request.yml │ └── release.yml ├── .gitignore ├── .releaserc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── extensions └── extension │ ├── build.gradle.kts │ └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── app │ └── revanced │ └── extension │ └── ExampleExtension.java ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package.json ├── patches ├── api │ └── patches.api ├── build.gradle.kts ├── src │ └── main │ │ └── kotlin │ │ └── app │ │ └── revanced │ │ ├── patches │ │ ├── all │ │ │ └── misc │ │ │ │ ├── packagename │ │ │ │ └── ChangePackageNamePatch.kt │ │ │ │ └── resources │ │ │ │ └── AddResourcesPatch.kt │ │ ├── avocards │ │ │ └── premium │ │ │ │ ├── EnablePremiumPatch.kt │ │ │ │ └── Fingerprint.kt │ │ ├── cake │ │ │ └── plus │ │ │ │ └── EnablePlusPatch.kt │ │ ├── crunchyroll │ │ │ └── premium │ │ │ │ ├── EnablePremiumPatch.kt │ │ │ │ └── Fingerprints.kt │ │ ├── duolingo │ │ │ ├── misc │ │ │ │ ├── debug │ │ │ │ │ ├── EnableDebugModePatch.kt │ │ │ │ │ └── Fingerprints.kt │ │ │ │ └── integrity │ │ │ │ │ ├── DisableLoginIntegrityPatch.kt │ │ │ │ │ └── Finterprints.kt │ │ │ ├── music │ │ │ │ ├── Fingerprints.kt │ │ │ │ └── FullSongsPatch.kt │ │ │ ├── nags │ │ │ │ ├── DisableNagsPatch.kt │ │ │ │ └── Fingerprints.kt │ │ │ ├── premium │ │ │ │ ├── EnablePremiumPatch.kt │ │ │ │ └── Fingerprints.kt │ │ │ └── shared │ │ │ │ └── Utils.kt │ │ ├── eggbun │ │ │ └── premium │ │ │ │ ├── EnablePremiumPatch.kt │ │ │ │ └── Fingerprints.kt │ │ ├── guessthecountry │ │ │ └── premium │ │ │ │ ├── Fingerprints.kt │ │ │ │ └── RemoveAdsPatch.kt │ │ ├── myexpenses │ │ │ └── misc │ │ │ │ └── pro │ │ │ │ ├── Fingerprints.kt │ │ │ │ └── UnlockProPatch.kt │ │ ├── shared │ │ │ └── misc │ │ │ │ ├── extension │ │ │ │ ├── Fingerprints.kt │ │ │ │ └── SharedExtensionPatch.kt │ │ │ │ ├── gms │ │ │ │ ├── Fingerprints.kt │ │ │ │ └── GmsCoreSupportPatch.kt │ │ │ │ ├── hex │ │ │ │ └── HexPatchBuilder.kt │ │ │ │ └── mapping │ │ │ │ └── ResourceMappingPatch.kt │ │ ├── teuida │ │ │ ├── misc │ │ │ │ ├── extension │ │ │ │ │ ├── ExtensionPatch.kt │ │ │ │ │ └── hooks │ │ │ │ │ │ └── StartActivityInitHook.kt │ │ │ │ └── gms │ │ │ │ │ ├── Constants.kt │ │ │ │ │ ├── Fingerprints.kt │ │ │ │ │ └── GmsCoreSupportPatch.kt │ │ │ └── premium │ │ │ │ ├── EnablePremiumPatch.kt │ │ │ │ └── Fingerprints.kt │ │ └── webster │ │ │ └── premium │ │ │ ├── Fingerprints.kt │ │ │ └── UnlockPremiumPatch.kt │ │ └── util │ │ ├── BytecodeUtils.kt │ │ ├── CrowdinPreprocessor.kt │ │ ├── ResourceUtils.kt │ │ ├── Utils.kt │ │ └── resource │ │ ├── ArrayResource.kt │ │ ├── BaseResource.kt │ │ └── StringResource.kt └── stub │ ├── build.gradle.kts │ └── src │ └── main │ └── java │ └── android │ └── os │ └── Build.java └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.github/workflows/build_pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/open_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.github/workflows/open_pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/README.md -------------------------------------------------------------------------------- /extensions/extension/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/extensions/extension/build.gradle.kts -------------------------------------------------------------------------------- /extensions/extension/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /extensions/extension/src/main/java/app/revanced/extension/ExampleExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/extensions/extension/src/main/java/app/revanced/extension/ExampleExtension.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/gradlew.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/package.json -------------------------------------------------------------------------------- /patches/api/patches.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/api/patches.api -------------------------------------------------------------------------------- /patches/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/build.gradle.kts -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/all/misc/packagename/ChangePackageNamePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/all/misc/packagename/ChangePackageNamePatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/all/misc/resources/AddResourcesPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/all/misc/resources/AddResourcesPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/avocards/premium/EnablePremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/avocards/premium/EnablePremiumPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/avocards/premium/Fingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/avocards/premium/Fingerprint.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/cake/plus/EnablePlusPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/cake/plus/EnablePlusPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/crunchyroll/premium/EnablePremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/crunchyroll/premium/EnablePremiumPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/crunchyroll/premium/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/crunchyroll/premium/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/misc/debug/EnableDebugModePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/misc/debug/EnableDebugModePatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/misc/debug/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/misc/debug/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/misc/integrity/DisableLoginIntegrityPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/misc/integrity/DisableLoginIntegrityPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/misc/integrity/Finterprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/misc/integrity/Finterprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/music/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/music/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/music/FullSongsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/music/FullSongsPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/nags/DisableNagsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/nags/DisableNagsPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/nags/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/nags/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/premium/EnablePremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/premium/EnablePremiumPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/premium/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/premium/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/duolingo/shared/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/duolingo/shared/Utils.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/eggbun/premium/EnablePremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/eggbun/premium/EnablePremiumPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/eggbun/premium/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/eggbun/premium/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/guessthecountry/premium/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/guessthecountry/premium/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/guessthecountry/premium/RemoveAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/guessthecountry/premium/RemoveAdsPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/UnlockProPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/myexpenses/misc/pro/UnlockProPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/shared/misc/extension/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/shared/misc/extension/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/shared/misc/extension/SharedExtensionPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/shared/misc/extension/SharedExtensionPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/shared/misc/gms/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/shared/misc/gms/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/shared/misc/gms/GmsCoreSupportPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/shared/misc/gms/GmsCoreSupportPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/shared/misc/hex/HexPatchBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/shared/misc/hex/HexPatchBuilder.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/shared/misc/mapping/ResourceMappingPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/shared/misc/mapping/ResourceMappingPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/teuida/misc/extension/ExtensionPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/teuida/misc/extension/ExtensionPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/teuida/misc/extension/hooks/StartActivityInitHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/teuida/misc/extension/hooks/StartActivityInitHook.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/teuida/misc/gms/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/teuida/misc/gms/Constants.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/teuida/misc/gms/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/teuida/misc/gms/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/teuida/misc/gms/GmsCoreSupportPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/teuida/misc/gms/GmsCoreSupportPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/teuida/premium/EnablePremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/teuida/premium/EnablePremiumPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/teuida/premium/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/teuida/premium/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/webster/premium/Fingerprints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/webster/premium/Fingerprints.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/patches/webster/premium/UnlockPremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/patches/webster/premium/UnlockPremiumPatch.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/util/BytecodeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/util/BytecodeUtils.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/util/CrowdinPreprocessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/util/CrowdinPreprocessor.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/util/ResourceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/util/ResourceUtils.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/util/Utils.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/util/resource/ArrayResource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/util/resource/ArrayResource.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/util/resource/BaseResource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/util/resource/BaseResource.kt -------------------------------------------------------------------------------- /patches/src/main/kotlin/app/revanced/util/resource/StringResource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/src/main/kotlin/app/revanced/util/resource/StringResource.kt -------------------------------------------------------------------------------- /patches/stub/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/stub/build.gradle.kts -------------------------------------------------------------------------------- /patches/stub/src/main/java/android/os/Build.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/patches/stub/src/main/java/android/os/Build.java -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoo-dles/revanced-custom-patches/HEAD/settings.gradle.kts --------------------------------------------------------------------------------