mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
23 lines
403 B
Groovy
23 lines
403 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
buildToolsVersion "36.1.0"
|
|
namespace "com.android.systemui.utils"
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ['src']
|
|
kotlin.directories.add('src')
|
|
}
|
|
}
|
|
}
|
|
|
|
addFrameworkJar('framework-16.jar')
|
|
compileOnlyCommonJars()
|
|
|
|
dependencies {
|
|
compileOnly projects.flags
|
|
compileOnly projects.viewcapturelib
|
|
}
|