├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── config.yml ├── dependabot.yml └── workflows │ ├── build_pull_request.yml │ ├── open_pull_request.yml │ ├── release.yml │ └── update_documentation.yml ├── .gitignore ├── .releaserc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── revanced-headline │ ├── revanced-headline-vertical-dark.svg │ └── revanced-headline-vertical-light.svg └── revanced-logo │ └── revanced-logo.svg ├── docs ├── 0_prerequisites.md ├── 1_usage.md ├── 2_building.md └── README.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package.json ├── settings.gradle.kts └── src ├── main ├── kotlin │ └── app │ │ └── revanced │ │ └── cli │ │ └── command │ │ ├── CommandUtils.kt │ │ ├── ListCompatibleVersions.kt │ │ ├── ListPatchesCommand.kt │ │ ├── MainCommand.kt │ │ ├── PatchCommand.kt │ │ └── utility │ │ ├── InstallCommand.kt │ │ ├── UninstallCommand.kt │ │ └── UtilityCommand.kt └── resources │ └── app │ └── revanced │ └── cli │ └── version.properties └── test └── kotlin └── app └── revanced └── cli └── command └── OptionValueConverterTest.kt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/workflows/build_pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/open_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/workflows/open_pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update_documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.github/workflows/update_documentation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/README.md -------------------------------------------------------------------------------- /assets/revanced-headline/revanced-headline-vertical-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/assets/revanced-headline/revanced-headline-vertical-dark.svg -------------------------------------------------------------------------------- /assets/revanced-headline/revanced-headline-vertical-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/assets/revanced-headline/revanced-headline-vertical-light.svg -------------------------------------------------------------------------------- /assets/revanced-logo/revanced-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/assets/revanced-logo/revanced-logo.svg -------------------------------------------------------------------------------- /docs/0_prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/docs/0_prerequisites.md -------------------------------------------------------------------------------- /docs/1_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/docs/1_usage.md -------------------------------------------------------------------------------- /docs/2_building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/docs/2_building.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/docs/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/gradlew.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/package.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "revanced-cli" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/CommandUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/CommandUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/ListCompatibleVersions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/ListCompatibleVersions.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/ListPatchesCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/MainCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/MainCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/PatchCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/utility/InstallCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/utility/InstallCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/utility/UninstallCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/utility/UninstallCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/cli/command/utility/UtilityCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/kotlin/app/revanced/cli/command/utility/UtilityCommand.kt -------------------------------------------------------------------------------- /src/main/resources/app/revanced/cli/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/main/resources/app/revanced/cli/version.properties -------------------------------------------------------------------------------- /src/test/kotlin/app/revanced/cli/command/OptionValueConverterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReVanced/revanced-cli/HEAD/src/test/kotlin/app/revanced/cli/command/OptionValueConverterTest.kt --------------------------------------------------------------------------------