123456789101112131415161718192021222324252627282930313233 |
- apply from: "../../Script/config.gradle"
- ext {
- codePath = "$rootDir/$rootDirName/$systemUiPath/unfold"
- }
- apply from: "$scriptPath/frameworks_module.gradle"
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-kapt'
- android {
- namespace 'com.android.systemui.unfold'
- buildFeatures {
- aidl(true)
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- kotlinOptions {
- jvmTarget = "17"
- freeCompilerArgs = ['-Xjvm-default=enable']
- }
- }
- dependencies {
- implementation "androidx.dynamicanimation:dynamicanimation:$ANDROID_X_VERSION_BASE"
- api 'javax.inject:javax.inject:1' // jsr330
- implementation 'com.google.dagger:dagger:2.45'
- kapt 'com.google.dagger:dagger-compiler:2.45'
- }
|