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