From 27a07cf13cd5d63610a9522a486a4fe23f5f95b1 Mon Sep 17 00:00:00 2001 From: Ranjan Shrestha Date: Wed, 5 Sep 2018 12:53:56 -0700 Subject: [PATCH] Use the round launcher icon available since 7.1 (#20968) Summary: The default react-native template has ic_launcher_round icons on the resources but has not been used. Thank you for sending the PR! We appreciate you spending the time to work on these changes. Help us understand your motivation by explaining why you decided to make this change. If this PR fixes an issue, type "Fixes #issueNumber" to automatically close the issue when the PR is merged. Pull Request resolved: https://github.com/facebook/react-native/pull/20968 Differential Revision: D9661731 Pulled By: hramos fbshipit-source-id: ad8f2f952df2c32aea2a8d3e69c445ed27387aa6 --- .../HelloWorld/android/app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/local-cli/templates/HelloWorld/android/app/src/main/AndroidManifest.xml b/local-cli/templates/HelloWorld/android/app/src/main/AndroidManifest.xml index 25d166dccedc7b..a6eda6784a2950 100644 --- a/local-cli/templates/HelloWorld/android/app/src/main/AndroidManifest.xml +++ b/local-cli/templates/HelloWorld/android/app/src/main/AndroidManifest.xml @@ -8,6 +8,7 @@ android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" + android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="false" android:theme="@style/AppTheme">