Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# This is the module where the Android Design System resides
# Any changes to the source files of this module require approval from @malmstein or @nalcalag.
/common/common-ui/ @malmstein @nalcalag
/android-design-system/design-system/ @malmstein @mikescamell
/android-design-system/design-system-internal/ @malmstein @mikescamell
/saved-sites/ @malmstein
/example-feature/ @cdrussell
13 changes: 13 additions & 0 deletions android-design-system/design-system-internal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,18 @@ android {
anvil {
generateDaggerFactories = true // default is false
}
lint {
baseline = file("lint-baseline.xml")
}
namespace 'com.duckduckgo.common.ui.internal'

buildFeatures {
compose true
}

composeOptions {
kotlinCompilerExtensionVersion = "_"
}
}

dependencies {
Expand All @@ -42,11 +53,13 @@ dependencies {
implementation project(path: ':app-build-config-api')
implementation project(':internal-features-api')
implementation project(path: ':navigation-api')
implementation "androidx.datastore:datastore-preferences:_"

implementation AndroidX.appCompat
implementation Google.android.material
implementation AndroidX.constraintLayout
implementation AndroidX.core.splashscreen
implementation AndroidX.fragment.ktx
implementation AndroidX.recyclerView
implementation AndroidX.lifecycle.viewModelKtx
// just to get the dagger annotations
Expand Down
Loading
Loading