diff options
author | Samuel Holland <samuel@sholland.org> | 2017-07-30 22:47:24 -0500 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2017-07-30 22:47:24 -0500 |
commit | 5a82ecf18a4c92125b6ef8845a6b6a0ae7f44088 (patch) | |
tree | ceca9d1cae7d8f98c12ff3a0b2a3b85d55753450 /app/src/main/AndroidManifest.xml | |
parent | 56cf8816d3115d18c47b7305eaf8246f11e70c83 (diff) |
icon: Use the uncropped logo for the non-round icon
The round icon remains the same.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 4 |
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> |