Remove leftover references to ic_launcher

pull/685/merge
Alex Baker 8 years ago
parent 2ae3057650
commit 17c2349667

@ -466,7 +466,7 @@
<activity
android:enabled="true"
android:exported="true"
android:icon="@mipmap/ic_launcher"
android:icon="@mipmap/ic_launcher_round"
android:label="@string/tasker_create_task"
android:name=".locale.ui.activity.TaskerCreateTaskActivity"
android:theme="@style/Tasks"
@ -493,7 +493,7 @@
<activity-alias
android:enabled="true"
android:exported="true"
android:icon="@mipmap/ic_launcher"
android:icon="@mipmap/ic_launcher_round"
android:label="@string/tasker_list_notification"
android:name="com.twofortyfouram.locale.example.setting.toast.ui.activity.PluginActivity"
android:targetActivity=".locale.ui.activity.TaskerSettingsActivity"

@ -50,7 +50,7 @@ public class ShortcutConfigActivity extends InjectingAppCompatActivity {
Intent intent = new Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, filter.listingTitle);
Drawable launcher = ContextCompat.getDrawable(this, R.mipmap.ic_launcher);
Drawable launcher = ContextCompat.getDrawable(this, R.mipmap.ic_launcher_round);
if (launcher instanceof BitmapDrawable) {
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, ((BitmapDrawable) launcher).getBitmap());
} else if (atLeastOreo() && launcher instanceof AdaptiveIconDrawable) {

@ -60,7 +60,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:scaleType="fitCenter"
android:src="@mipmap/ic_launcher"/>
android:src="@mipmap/ic_launcher_round"/>
<LinearLayout

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
Loading…
Cancel
Save