PlayerAndroid/build.gradle

28 lines
765 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 {
2021-11-23 20:09:15 +00:00
ext.kotlin_version = '1.6.0'
2018-07-27 13:07:33 +00:00
repositories {
mavenCentral()
2018-07-27 13:07:33 +00:00
google()
}
dependencies {
2021-10-12 06:16:56 +00:00
classpath 'com.android.tools.build:gradle:7.0.3'
2018-12-12 21:27:37 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2021-11-30 19:14:40 +00:00
def nav_version = "2.4.0-beta02"
2020-07-24 18:28:15 +00:00
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.0.1"
2018-07-27 13:07:33 +00:00
}
}
allprojects {
repositories {
google()
2020-10-06 08:46:04 +00:00
mavenCentral()
maven { url "https://jitpack.io" }
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
}*/