mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-02-09 08:46:33 +01:00
32 lines
587 B
Groovy
32 lines
587 B
Groovy
plugins {
|
|
alias(libs.plugins.androlib)
|
|
alias(libs.plugins.kotlin)
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
|
|
defaultConfig {
|
|
minSdk 26
|
|
targetSdk 33
|
|
}
|
|
namespace 'net.pierrox.lightning_launcher.plugin'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.remoter
|
|
annotationProcessor libs.remoter.compiler
|
|
implementation libs.parceler
|
|
annotationProcessor libs.parceler.compiler
|
|
}
|