mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
feat: Dagger module
This commit is contained in:
@@ -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
17
dagger/build.gradle
Normal 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
|
||||
}
|
||||
@@ -102,3 +102,4 @@ include ':baseline-profile'
|
||||
include ':androidx-lib'
|
||||
include ':flags'
|
||||
include ':wmshell'
|
||||
include ':dagger'
|
||||
|
||||
Reference in New Issue
Block a user