mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-28 19:58:13 +01:00
836d879a4f
- Removed obsolete sdk checks
20 lines
433 B
Groovy
20 lines
433 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
|
|
defaultConfig {
|
|
minSdk 26
|
|
targetSdk 33
|
|
}
|
|
namespace 'net.pierrox.lightning_launcher.plugin'
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.josesamuel:remoter-annotations:1.2.0'
|
|
annotationProcessor 'com.josesamuel:remoter:1.2.0'
|
|
implementation 'org.parceler:parceler-api:1.1.12'
|
|
annotationProcessor 'org.parceler:parceler:1.1.12'
|
|
}
|