thumb-key/settings.gradle
2024-05-22 11:39:02 -04:00

23 lines
564 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id 'com.android.application' version '8.4.1'
id 'com.android.library' version '8.4.1'
id 'org.jetbrains.kotlin.android' version '1.9.24'
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
rootProject.name = "com.dessalines.thumbkey"
include ':app'