fretfret

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

settings.gradle.kts (533B)


      1 pluginManagement {
      2     repositories {
      3         google {
      4             content {
      5                 includeGroupByRegex("com\\.android.*")
      6                 includeGroupByRegex("com\\.google.*")
      7                 includeGroupByRegex("androidx.*")
      8             }
      9         }
     10         mavenCentral()
     11         gradlePluginPortal()
     12     }
     13 }
     14 dependencyResolutionManagement {
     15     repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
     16     repositories {
     17         google()
     18         mavenCentral()
     19     }
     20 }
     21 
     22 rootProject.name = "fretfret"
     23 include(":app")
     24