0
0
mirror of https://github.com/florisboard/florisboard.git synced 2024-09-20 03:52:18 +02:00
florisboard/build.gradle.kts
2022-05-11 22:59:37 +02:00

23 lines
683 B
Plaintext

plugins {
base // adds clean task to root project
}
buildscript {
dependencies {
classpath("com.android.tools.build:gradle:7.2.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
classpath("org.jetbrains.kotlin:kotlin-serialization:1.6.10")
classpath("com.google.devtools.ksp:symbol-processing-gradle-plugin:1.6.10-1.0.4")
classpath("com.google.android.gms:oss-licenses-plugin:0.10.5")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.8.2.0")
}
}
subprojects {
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") } // JetPref library
google()
}
}