Skip to content

Commit

Permalink
fix(copy): use correct images for Android Adaptive Icon foregrounds (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ElRochito committed Jun 12, 2020
1 parent 362a334 commit 65520bc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/native.ts
Expand Up @@ -72,7 +72,7 @@ const ANDROID_ICONS: readonly ProcessItem[] = [
target: 'mipmap-mdpi/ic_launcher_round.png',
},
{
source: 'drawable-mdpi-icon.png',
source: 'mdpi-foreground.png',
target: 'mipmap-mdpi/ic_launcher_foreground.png',
},
{
Expand All @@ -84,7 +84,7 @@ const ANDROID_ICONS: readonly ProcessItem[] = [
target: 'mipmap-hdpi/ic_launcher_round.png',
},
{
source: 'drawable-hdpi-icon.png',
source: 'hdpi-foreground.png',
target: 'mipmap-hdpi/ic_launcher_foreground.png',
},
{
Expand All @@ -96,7 +96,7 @@ const ANDROID_ICONS: readonly ProcessItem[] = [
target: 'mipmap-xhdpi/ic_launcher_round.png',
},
{
source: 'drawable-xhdpi-icon.png',
source: 'xhdpi-foreground.png',
target: 'mipmap-xhdpi/ic_launcher_foreground.png',
},
{
Expand All @@ -108,7 +108,7 @@ const ANDROID_ICONS: readonly ProcessItem[] = [
target: 'mipmap-xxhdpi/ic_launcher_round.png',
},
{
source: 'drawable-xxhdpi-icon.png',
source: 'xxhdpi-foreground.png',
target: 'mipmap-xxhdpi/ic_launcher_foreground.png',
},
{
Expand All @@ -120,7 +120,7 @@ const ANDROID_ICONS: readonly ProcessItem[] = [
target: 'mipmap-xxxhdpi/ic_launcher_round.png',
},
{
source: 'drawable-xxxhdpi-icon.png',
source: 'xxxhdpi-foreground.png',
target: 'mipmap-xxxhdpi/ic_launcher_foreground.png',
},
];
Expand Down

0 comments on commit 65520bc

Please sign in to comment.