mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-14 16:18:20 +00:00
22 lines
415 B
Groovy
22 lines
415 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace "com.android.systemui.plugin_core"
|
|
buildFeatures {
|
|
aidl true
|
|
}
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
}
|
|
}
|
|
}
|
|
|
|
addFrameworkJar('framework-15.jar')
|
|
compileOnlyCommonJars()
|