PlayerAndroid/build.gradle

30 lines
773 B
Groovy
Raw Normal View History

2018-07-27 13:07:33 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-12-04 12:47:14 +00:00
ext.kotlin_version = '1.4.20'
2018-07-27 13:07:33 +00:00
repositories {
jcenter()
google()
}
dependencies {
2020-12-04 12:47:14 +00:00
classpath 'com.android.tools.build:gradle:4.1.1'
2018-12-12 21:27:37 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020-07-24 18:28:15 +00:00
def nav_version = "2.3.0"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
2020-10-06 09:06:16 +00:00
classpath "com.diffplug.spotless:spotless-plugin-gradle:4.5.1"
2018-07-27 13:07:33 +00:00
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
2020-10-06 08:46:04 +00:00
mavenCentral()
2018-07-27 13:07:33 +00:00
}
}
2020-10-06 08:46:04 +00:00
/*task clean(type: Delete) {
2018-07-27 13:07:33 +00:00
delete rootProject.buildDir
2020-10-06 08:46:04 +00:00
}*/