Add basic testing app for Android.

This is only very basic right now. Will be expanded on later.
This commit is contained in:
David Reid
2025-02-22 18:54:45 +10:00
parent 37b95f0f42
commit a497466f75
39 changed files with 1200 additions and 0 deletions
@@ -0,0 +1,24 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "MiniaudioTester"
include(":app")