fretfret

learn the notes on a guitar from the comfort of your android phone
Log | Files | Refs | README | LICENSE

libs.versions.toml (2163B)


      1 [versions]
      2 agp = "8.5.0"
      3 kotlin = "1.9.0"
      4 coreKtx = "1.13.1"
      5 junit = "4.13.2"
      6 junitVersion = "1.1.5"
      7 espressoCore = "3.5.1"
      8 lifecycle = "2.8.3"
      9 activityCompose = "1.9.0"
     10 composeBom = "2023.08.00"
     11 datastorePreferencesCore = "1.1.1"
     12 datastorePreferences = "1.1.1"
     13 
     14 [libraries]
     15 androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
     16 junit = { group = "junit", name = "junit", version.ref = "junit" }
     17 androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
     18 androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
     19 androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" }
     20 androidx-lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycle"}
     21 androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
     22 androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
     23 androidx-ui = { group = "androidx.compose.ui", name = "ui" }
     24 androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
     25 androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
     26 androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
     27 androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
     28 androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
     29 androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
     30 androidx-datastore-preferences-core = { group = "androidx.datastore", name = "datastore-preferences-core", version.ref = "datastorePreferencesCore" }
     31 androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastorePreferences" }
     32 
     33 [plugins]
     34 android-application = { id = "com.android.application", version.ref = "agp" }
     35 jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
     36