mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-11 06:44:00 +00:00
27 lines
508 B
Groovy
27 lines
508 B
Groovy
plugins {
|
|
alias(libs.plugins.android.library)
|
|
}
|
|
|
|
android {
|
|
buildToolsVersion "36.1.0"
|
|
namespace "com.android.systemui.plugin_core"
|
|
buildFeatures {
|
|
aidl true
|
|
}
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ['src']
|
|
kotlin.directories.add('src')
|
|
aidl.srcDirs = ['src']
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
}
|
|
}
|
|
}
|
|
|
|
addFrameworkJar('framework-16.jar')
|
|
compileOnlyCommonJars()
|
|
|
|
dependencies {
|
|
compileOnly projects.log
|
|
}
|