mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-15 03:40:49 +01:00
44b690beaa
Use new syntax
22 lines
374 B
Groovy
22 lines
374 B
Groovy
plugins {
|
|
alias(libs.plugins.androlib)
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
|
|
defaultConfig {
|
|
minSdk 26
|
|
targetSdk 33
|
|
}
|
|
namespace 'net.pierrox.lightning_launcher.plugin'
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.remoter
|
|
annotationProcessor libs.remoter.compiler
|
|
implementation libs.parceler
|
|
annotationProcessor libs.parceler.compiler
|
|
}
|