taler-code-examples

Reference examples (sample code)
Log | Files | Refs | README | LICENSE

libs.versions.toml (928B)


      1 [versions]
      2 agp = "8.4.1"
      3 kotlin = "1.9.24"
      4 coreKtx = "1.13.1"
      5 junit = "4.13.2"
      6 junitVersion = "1.2.1"
      7 espressoCore = "3.6.1"
      8 appcompat = "1.7.0"
      9 material = "1.12.0"
     10 
     11 [libraries]
     12 androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
     13 junit = { group = "junit", name = "junit", version.ref = "junit" }
     14 androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
     15 androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
     16 androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
     17 material = { group = "com.google.android.material", name = "material", version.ref = "material" }
     18 
     19 [plugins]
     20 android-application = { id = "com.android.application", version.ref = "agp" }
     21 jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
     22