android_terminal/NeoLang/build.gradle
Martin Valba 36d31f0dff Style changes and permission ask rollbacks
* Main app theme now targets material3
* Permission checker/granter rollback for READ permission
2023-09-09 18:54:33 +00:00

38 lines
648 B
Groovy

apply plugin: 'java-library'
apply plugin: 'kotlin'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
api rootProject.ext.deps["kotlin-stdlib"]
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath rootProject.ext.deps["kotlin-gradle-plugin"]
}
}
repositories {
mavenCentral()
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
testImplementation rootProject.ext.deps["junit"]
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}