diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2018-04-29 01:10:22 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2018-04-30 17:30:24 +0530 |
commit | 425d194e4f7a97b5ff65ec80eeaa40d6f2424f0c (patch) | |
tree | d50d40c79d7a4d716602598b0812ad1834a8d078 /app/src | |
parent | 4ec0b3a908679f7943488b97f62f9e354edd68b3 (diff) |
wg: Add and use dummy AppTheme
Preparation for when the app will start carrying
colors reflecting the WireGuard brand.
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 63d8aa78..48fc0763 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -16,7 +16,7 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@android:style/Theme.Material.Light.DarkActionBar" + android:theme="@style/AppTheme" tools:ignore="UnusedAttribute"> <activity android:name=".activity.MainActivity"> diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 11f3e544..f70c31bd 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android"> + <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar" /> <style name="fab_label" parent="android:TextAppearance.DeviceDefault.Inverse"> <item name="android:background">@drawable/fab_label_background</item> </style> |