2023-10-01 11:31:50 +07:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.androlib)
|
2023-11-11 20:16:39 +07:00
|
|
|
alias(libs.plugins.kotlin)
|
2023-10-01 11:31:50 +07:00
|
|
|
}
|
2019-02-08 21:46:09 +01:00
|
|
|
|
|
|
|
android {
|
2023-09-23 00:11:00 +07:00
|
|
|
compileSdk 33
|
2019-02-08 21:46:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2023-09-23 00:11:00 +07:00
|
|
|
minSdk 26
|
|
|
|
targetSdk 33
|
2019-02-08 21:46:09 +01:00
|
|
|
}
|
2023-09-23 16:46:25 +07:00
|
|
|
namespace 'net.pierrox.lightning_launcher.plugin'
|
2019-02-08 21:46:09 +01:00
|
|
|
|
2023-11-11 20:16:39 +07:00
|
|
|
compileOptions {
|
2023-12-09 22:26:35 +07:00
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
2023-11-11 20:16:39 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
2023-12-09 22:26:35 +07:00
|
|
|
jvmTarget = '17'
|
2023-11-11 20:16:39 +07:00
|
|
|
}
|
|
|
|
|
2019-02-08 21:46:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-10-01 11:31:50 +07:00
|
|
|
implementation libs.remoter
|
|
|
|
annotationProcessor libs.remoter.compiler
|
|
|
|
implementation libs.parceler
|
|
|
|
annotationProcessor libs.parceler.compiler
|
2019-02-08 21:46:09 +01:00
|
|
|
}
|