0
0
mirror of https://github.com/florisboard/florisboard.git synced 2024-09-20 03:52:18 +02:00
florisboard/build.gradle.kts
2021-12-19 12:46:19 +01:00

22 lines
591 B
Plaintext

plugins {
base // adds clean task to root project
}
buildscript {
dependencies {
classpath("com.android.tools.build:gradle:7.0.4")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
classpath("org.jetbrains.kotlin:kotlin-serialization:1.6.0")
classpath("com.google.android.gms:oss-licenses-plugin:0.10.4")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1")
}
}
subprojects {
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") } // JetPref library
google()
}
}