feat: Dagger module

This commit is contained in:
Pun Butrach
2025-11-16 19:44:02 +07:00
parent 3b3a49eebf
commit 07d6a47fcf
3 changed files with 19 additions and 0 deletions

View File

@@ -405,6 +405,7 @@ dependencies {
withQuickstepImplementation projects.compatLib.compatLibVBaklava
withQuickstepImplementation projects.wmshell
withQuickstepImplementation projects.flags
withQuickstepImplementation projects.dagger
implementation libs.androidx.dynamicanimation
implementation fileTree(dir: FRAMEWORK_PREBUILTS_DIR, include: 'SystemUI-statsd-16.jar')

17
dagger/build.gradle Normal file
View File

@@ -0,0 +1,17 @@
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
}
android {
namespace "com.android.launcher3.dagger"
sourceSets {
main {
java.srcDirs = ['src']
}
}
}
dependencies {
implementation libs.javax.inject
}

View File

@@ -102,3 +102,4 @@ include ':baseline-profile'
include ':androidx-lib'
include ':flags'
include ':wmshell'
include ':dagger'