1234567891011121314151617181920212223242526272829 |
- apply from: "../../Script/config.gradle"
- ext {
- codePath = "$rootDir/$rootDirName/$systemUiPath/plugin"
- }
- apply from: "$scriptPath/frameworks_module.gradle"
- apply from: frameworkDependencies
- apply plugin: 'kotlin-android'
- android {
- namespace 'com.android.systemui.plugins'
- sourceSets {
- main {
- java.srcDir "$codePath/bcsmartspace/src"
- }
- }
- kotlinOptions {
- jvmTarget = "1.8"
- freeCompilerArgs = ['-Xjvm-default=all']
- }
- }
- dependencies {
- implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
- implementation project(":$rootDirName:SystemUI:PluginCoreLib")
- implementation project(":$rootDirName:SystemUI:SystemUIAnimationLib")
- implementation project(":$rootDirName:SystemUI:SystemUILogLib")
- }
|