summaryrefslogtreecommitdiffhomepage
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2017-07-30 22:47:24 -0500
committerSamuel Holland <samuel@sholland.org>2017-07-30 22:47:24 -0500
commitcedb6fb6e330df774fef9cce2b59ef759f3c194c (patch)
treececa9d1cae7d8f98c12ff3a0b2a3b85d55753450 /app/src/main/AndroidManifest.xml
parent5e5de7f9549b7096816e73659f6c99afdccee3ac (diff)
icon: Use the uncropped logo for the non-round icon
The round icon remains the same.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 395dd51c..69b413fe 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,12 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.wireguard.android">
+
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
- android:roundIcon="@mipmap/ic_launcher"
+ android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@android:style/Theme.Material.Light.DarkActionBar">
</application>
+
</manifest>