-
Notifications
You must be signed in to change notification settings - Fork 998
Preparations for UI Experiments #5627
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f111167
903f8b6
1eb912d
3200be5
f69a24e
b8947c3
5303e45
729d2d4
866602b
115e825
01ac754
9f26814
22bd343
5b2811e
211cf98
96fa3b8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One more small change needed: Android/app/src/main/java/com/duckduckgo/app/appearance/AppearanceActivity.kt Lines 170 to 180 in 3acaa58
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Copyright (c) 2025 DuckDuckGo | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
plugins { | ||
id 'com.android.library' | ||
id 'kotlin-android' | ||
id 'com.squareup.anvil' | ||
} | ||
|
||
apply from: "$rootProject.projectDir/gradle/android-library.gradle" | ||
|
||
android { | ||
namespace 'com.duckduckgo.common.ui.experiments' | ||
} | ||
|
||
android { | ||
anvil { | ||
generateDaggerFactories = true // default is false | ||
} | ||
lintOptions { | ||
baseline file("lint-baseline.xml") | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation project(path: ':common-utils') | ||
implementation project(path: ':di') | ||
anvil project(path: ':anvil-compiler') | ||
implementation project(path: ':anvil-annotations') | ||
implementation project(path: ':app-build-config-api') | ||
|
||
implementation AndroidX.appCompat | ||
implementation Google.android.material | ||
implementation AndroidX.constraintLayout | ||
implementation AndroidX.core.splashscreen | ||
implementation AndroidX.recyclerView | ||
implementation AndroidX.lifecycle.viewModelKtx | ||
// just to get the dagger annotations | ||
implementation Google.dagger | ||
|
||
implementation "androidx.core:core-ktx:_" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<issues format="6" by="lint 8.5.1" type="baseline" client="gradle" dependencies="false" name="AGP (8.5.1)" variant="all" version="8.5.1"> | ||
|
||
</issues> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?><!-- | ||
~ Copyright (c) 2021 DuckDuckGo | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
</manifest> |
Uh oh!
There was an error while loading. Please reload this page.