2019-02-08 21:46:09 +01:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-02-15 03:15:15 +01:00
|
|
|
implementation 'com.josesamuel:remoter-annotations:1.2.0'
|
|
|
|
annotationProcessor 'com.josesamuel:remoter:1.2.0'
|
2019-02-08 21:46:09 +01:00
|
|
|
implementation 'org.parceler:parceler-api:1.1.12'
|
|
|
|
annotationProcessor 'org.parceler:parceler:1.1.12'
|
|
|
|
}
|