0
0
mirror of https://github.com/florisboard/florisboard.git synced 2024-09-20 12:02:19 +02:00
florisboard/build.gradle.kts
2022-04-10 14:53:48 +02:00

22 lines
593 B
Plaintext

plugins {
base // adds clean task to root project
}
buildscript {
dependencies {
classpath("com.android.tools.build:gradle:7.1.3")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
classpath("org.jetbrains.kotlin:kotlin-serialization:1.6.10")
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()
}
}