├── .github └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── android ├── optimize-images-in-repo.sh ├── optimize-images-in-subdir-repos.sh └── sign-builds.py ├── gradle-plugin ├── CHANGELOG.md ├── README.md ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── mozilla │ │ │ └── android │ │ │ ├── MozillaPlugin.kt │ │ │ ├── ServiceLocator.kt │ │ │ ├── ext │ │ │ ├── Project.kt │ │ │ ├── Runtime.kt │ │ │ └── TaskContainer.kt │ │ │ ├── shell │ │ │ ├── Git.kt │ │ │ └── GitAggregates.kt │ │ │ └── tasks │ │ │ └── ValidateAndroidAppReleaseConfiguration.kt │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ └── org.mozilla.android.properties │ └── test │ ├── kotlin │ └── org │ │ └── mozilla │ │ └── android │ │ ├── Mockito.kt │ │ ├── TestServiceLocator.kt │ │ ├── shell │ │ └── GitAggregatesTest.kt │ │ └── tasks │ │ └── ValidateAndroidAppReleaseConfigurationTest.kt │ └── resources │ └── mockito-extensions │ └── org.mockito.plugins.MockMaker ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── taskcluster └── get-secret.py /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | out/ 3 | 4 | .gradle 5 | local.properties 6 | .idea 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/README.md -------------------------------------------------------------------------------- /android/optimize-images-in-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/android/optimize-images-in-repo.sh -------------------------------------------------------------------------------- /android/optimize-images-in-subdir-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/android/optimize-images-in-subdir-repos.sh -------------------------------------------------------------------------------- /android/sign-builds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/android/sign-builds.py -------------------------------------------------------------------------------- /gradle-plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/CHANGELOG.md -------------------------------------------------------------------------------- /gradle-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/README.md -------------------------------------------------------------------------------- /gradle-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/build.gradle.kts -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/MozillaPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/MozillaPlugin.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/ServiceLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/ServiceLocator.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/ext/Project.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/ext/Project.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/ext/Runtime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/ext/Runtime.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/ext/TaskContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/ext/TaskContainer.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/shell/Git.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/shell/Git.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/shell/GitAggregates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/shell/GitAggregates.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/kotlin/org/mozilla/android/tasks/ValidateAndroidAppReleaseConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/kotlin/org/mozilla/android/tasks/ValidateAndroidAppReleaseConfiguration.kt -------------------------------------------------------------------------------- /gradle-plugin/src/main/resources/META-INF/gradle-plugins/org.mozilla.android.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/main/resources/META-INF/gradle-plugins/org.mozilla.android.properties -------------------------------------------------------------------------------- /gradle-plugin/src/test/kotlin/org/mozilla/android/Mockito.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/test/kotlin/org/mozilla/android/Mockito.kt -------------------------------------------------------------------------------- /gradle-plugin/src/test/kotlin/org/mozilla/android/TestServiceLocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/test/kotlin/org/mozilla/android/TestServiceLocator.kt -------------------------------------------------------------------------------- /gradle-plugin/src/test/kotlin/org/mozilla/android/shell/GitAggregatesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/test/kotlin/org/mozilla/android/shell/GitAggregatesTest.kt -------------------------------------------------------------------------------- /gradle-plugin/src/test/kotlin/org/mozilla/android/tasks/ValidateAndroidAppReleaseConfigurationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle-plugin/src/test/kotlin/org/mozilla/android/tasks/ValidateAndroidAppReleaseConfigurationTest.kt -------------------------------------------------------------------------------- /gradle-plugin/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /taskcluster/get-secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla-mobile/android-automation-tools/HEAD/taskcluster/get-secret.py --------------------------------------------------------------------------------