File tree Expand file tree Collapse file tree 5 files changed +64
-0
lines changed
java/com/duckduckgo/app/icon/api
common/common-ui/src/main/res/values Expand file tree Collapse file tree 5 files changed +64
-0
lines changed Original file line number Diff line number Diff line change 105
105
</intent-filter >
106
106
</activity-alias >
107
107
108
+ <activity-alias
109
+ android : name =" com.duckduckgo.app.launch.LauncherPink"
110
+ android : enabled =" false"
111
+ android : exported =" true"
112
+ android : icon =" @mipmap/ic_launcher_pink"
113
+ android : roundIcon =" @mipmap/ic_launcher_pink_round"
114
+ android : targetActivity =" com.duckduckgo.app.launch.LaunchBridgeActivity" >
115
+ <intent-filter >
116
+ <action android : name =" android.intent.action.MAIN" />
117
+
118
+ <category android : name =" android.intent.category.LAUNCHER" />
119
+ <category android : name =" android.intent.category.APP_BROWSER" />
120
+ </intent-filter >
121
+ </activity-alias >
122
+
108
123
<activity-alias
109
124
android : name =" com.duckduckgo.app.launch.LauncherBlue"
110
125
android : enabled =" false"
Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ enum class AppIcon(
46
46
componentName = " $QUALIFIER .Launcher" ,
47
47
icon = R .mipmap.ic_launcher_red_round,
48
48
),
49
+ PINK (
50
+ componentName = " $QUALIFIER .LauncherPink" ,
51
+ icon = R .mipmap.ic_launcher_pink_round,
52
+ ),
49
53
GOLD (
50
54
componentName = " $QUALIFIER .LauncherGold" ,
51
55
icon = R .mipmap.ic_launcher_gold,
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <!--
3
+ ~ Copyright (c) 2025 DuckDuckGo
4
+ ~
5
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
6
+ ~ you may not use this file except in compliance with the License.
7
+ ~ You may obtain a copy of the License at
8
+ ~
9
+ ~ http://www.apache.org/licenses/LICENSE-2.0
10
+ ~
11
+ ~ Unless required by applicable law or agreed to in writing, software
12
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
13
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ ~ See the License for the specific language governing permissions and
15
+ ~ limitations under the License.
16
+ -->
17
+
18
+ <adaptive-icon xmlns : android =" http://schemas.android.com/apk/res/android" >
19
+ <background android : drawable =" @color/ic_launcher_pink_background" />
20
+ <foreground android : drawable =" @mipmap/ic_launcher_foreground" />
21
+ <monochrome android : drawable =" @mipmap/ic_launcher_silhouette_foreground" />
22
+ </adaptive-icon >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <!--
3
+ ~ Copyright (c) 2025 DuckDuckGo
4
+ ~
5
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
6
+ ~ you may not use this file except in compliance with the License.
7
+ ~ You may obtain a copy of the License at
8
+ ~
9
+ ~ http://www.apache.org/licenses/LICENSE-2.0
10
+ ~
11
+ ~ Unless required by applicable law or agreed to in writing, software
12
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
13
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ ~ See the License for the specific language governing permissions and
15
+ ~ limitations under the License.
16
+ -->
17
+
18
+ <adaptive-icon xmlns : android =" http://schemas.android.com/apk/res/android" >
19
+ <background android : drawable =" @color/ic_launcher_pink_background" />
20
+ <foreground android : drawable =" @mipmap/ic_launcher_foreground" />
21
+ <monochrome android : drawable =" @mipmap/ic_launcher_silhouette_foreground" />
22
+ </adaptive-icon >
Original file line number Diff line number Diff line change 247
247
<color name =" ic_launcher_purple_background" >#7A4BDC</color >
248
248
<color name =" ic_launcher_blue_background" >#4179ED</color >
249
249
<color name =" ic_launcher_black_background" >#262626</color >
250
+ <color name =" ic_launcher_pink_background" >#E37089</color >
250
251
</resources >
251
252
252
253
<!-- Opacity Prefixes
You can’t perform that action at this time.
0 commit comments