thumb-key/settings.gradle
2024-10-02 00:48:31 -04:00

23 lines
564 B
Groovy

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