123456789101112131415161718192021222324252627282930 |
- import java.nio.file.Paths
- apply from: "../../Script/config.gradle"
- ext {
- codePath = Paths.get("$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 "Code/bcsmartspace/src"
- }
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
- dependencies {
- implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
- implementation 'com.google.errorprone:error_prone_annotations:2.26.1'
- implementation project(":$rootDirName:SystemUI:PluginCoreLib")
- implementation project(":$rootDirName:SystemUI:SystemUIAnimationLib")
- }
|