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-08 19:05:04 +01:00

21 lines
522 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("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()
}
}