You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
534 B
Groovy
22 lines
534 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
plugins {
|
|
id 'com.android.application' version '8.2.0-alpha04'
|
|
id 'com.android.library' version '8.2.0-alpha04'
|
|
id 'org.jetbrains.kotlin.android' version '1.6.21'
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
rootProject.name = "torrents-csv-android"
|
|
include ':app'
|