Path: blob/main/examples/mobile/android_example/gradle/libs.versions.toml
6601 views
[versions]1agp = "8.4.0"2junit = "4.13.2"3junitVersion = "1.1.5"4espressoCore = "3.5.1"5appcompat = "1.6.1"6material = "1.10.0"7gamesActivity = "2.0.2"89[libraries]10junit = { group = "junit", name = "junit", version.ref = "junit" }11ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }12espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }13appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }14material = { group = "com.google.android.material", name = "material", version.ref = "material" }15games-activity = { group = "androidx.games", name = "games-activity", version.ref = "gamesActivity" }1617[plugins]18android-application = { id = "com.android.application", version.ref = "agp" }192021