diff options
author | Asher Simonds <dayanhammer@gmail.com> | 2018-02-12 10:23:45 +0100 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2019-12-11 23:44:46 +0200 |
commit | 35dcb70e0c482798d1c0b5cec47bbdea967beb7e (patch) | |
tree | eaf28e501374745623cec1f07c3294e9942a2613 | |
parent | 8c054c831baa46f52e57cdbc25d302ca7d8cb978 (diff) | |
download | android_packages_providers_ContactsProvider-35dcb70e0c482798d1c0b5cec47bbdea967beb7e.tar.gz android_packages_providers_ContactsProvider-35dcb70e0c482798d1c0b5cec47bbdea967beb7e.tar.bz2 android_packages_providers_ContactsProvider-35dcb70e0c482798d1c0b5cec47bbdea967beb7e.zip |
ContactsProvider: adaptive icon
Change-Id: Ibacea76eb0f6fdbfacd04bdb82649fe0b9d78f6f
Signed-off-by: Joey <joey@lineageos.org>
17 files changed, 21 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 2da56fc0..b7b366b2 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -25,7 +25,7 @@ <application android:process="android.process.acore" android:label="@string/app_label" - android:icon="@drawable/app_icon" + android:icon="@mipmap/ic_launcher" android:allowBackup="false" android:usesCleartextTraffic="false"> diff --git a/res/drawable-hdpi/app_icon.png b/res/drawable-hdpi/app_icon.png Binary files differdeleted file mode 100644 index 64eff002..00000000 --- a/res/drawable-hdpi/app_icon.png +++ /dev/null diff --git a/res/drawable-mdpi/app_icon.png b/res/drawable-mdpi/app_icon.png Binary files differdeleted file mode 100644 index b4ee8215..00000000 --- a/res/drawable-mdpi/app_icon.png +++ /dev/null diff --git a/res/drawable-xhdpi/app_icon.png b/res/drawable-xhdpi/app_icon.png Binary files differdeleted file mode 100644 index 6feeadfb..00000000 --- a/res/drawable-xhdpi/app_icon.png +++ /dev/null diff --git a/res/drawable-xxhdpi/app_icon.png b/res/drawable-xxhdpi/app_icon.png Binary files differdeleted file mode 100644 index 01a3fde9..00000000 --- a/res/drawable-xxhdpi/app_icon.png +++ /dev/null diff --git a/res/drawable-xxxhdpi/app_icon.png b/res/drawable-xxxhdpi/app_icon.png Binary files differdeleted file mode 100644 index 328e067e..00000000 --- a/res/drawable-xxxhdpi/app_icon.png +++ /dev/null diff --git a/res/mipmap-anydpi/ic_launcher.xml b/res/mipmap-anydpi/ic_launcher.xml new file mode 100644 index 00000000..d8649ba5 --- /dev/null +++ b/res/mipmap-anydpi/ic_launcher.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (c) 2018 The LineageOS Project + + 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. +--> +<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> + <background android:drawable="@mipmap/ic_background"/> + <foreground android:drawable="@mipmap/ic_foreground"/> +</adaptive-icon> + diff --git a/res/mipmap-hdpi/ic_background.png b/res/mipmap-hdpi/ic_background.png Binary files differnew file mode 100644 index 00000000..e3d7036d --- /dev/null +++ b/res/mipmap-hdpi/ic_background.png diff --git a/res/mipmap-hdpi/ic_foreground.png b/res/mipmap-hdpi/ic_foreground.png Binary files differnew file mode 100644 index 00000000..8de9350b --- /dev/null +++ b/res/mipmap-hdpi/ic_foreground.png diff --git a/res/mipmap-mdpi/ic_background.png b/res/mipmap-mdpi/ic_background.png Binary files differnew file mode 100644 index 00000000..9cf4aa99 --- /dev/null +++ b/res/mipmap-mdpi/ic_background.png diff --git a/res/mipmap-mdpi/ic_foreground.png b/res/mipmap-mdpi/ic_foreground.png Binary files differnew file mode 100644 index 00000000..3cabd629 --- /dev/null +++ b/res/mipmap-mdpi/ic_foreground.png diff --git a/res/mipmap-xhdpi/ic_background.png b/res/mipmap-xhdpi/ic_background.png Binary files differnew file mode 100644 index 00000000..83d721f8 --- /dev/null +++ b/res/mipmap-xhdpi/ic_background.png diff --git a/res/mipmap-xhdpi/ic_foreground.png b/res/mipmap-xhdpi/ic_foreground.png Binary files differnew file mode 100644 index 00000000..9de308a4 --- /dev/null +++ b/res/mipmap-xhdpi/ic_foreground.png diff --git a/res/mipmap-xxhdpi/ic_background.png b/res/mipmap-xxhdpi/ic_background.png Binary files differnew file mode 100644 index 00000000..ac282915 --- /dev/null +++ b/res/mipmap-xxhdpi/ic_background.png diff --git a/res/mipmap-xxhdpi/ic_foreground.png b/res/mipmap-xxhdpi/ic_foreground.png Binary files differnew file mode 100644 index 00000000..aae300cd --- /dev/null +++ b/res/mipmap-xxhdpi/ic_foreground.png diff --git a/res/mipmap-xxxhdpi/ic_background.png b/res/mipmap-xxxhdpi/ic_background.png Binary files differnew file mode 100644 index 00000000..ef949add --- /dev/null +++ b/res/mipmap-xxxhdpi/ic_background.png diff --git a/res/mipmap-xxxhdpi/ic_foreground.png b/res/mipmap-xxxhdpi/ic_foreground.png Binary files differnew file mode 100644 index 00000000..74f85903 --- /dev/null +++ b/res/mipmap-xxxhdpi/ic_foreground.png |