diff options
| author | ilotterytea <iltsu@alright.party> | 2024-10-08 01:54:47 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-10-08 01:54:47 +0500 |
| commit | c5ee68a647871ca7bc8044a96759e7c00f9188db (patch) | |
| tree | 5101f68c9d33ed0c2c7ebb00178fe9d4537d9fe0 /android/res/values | |
| parent | 8e046a873ae0df5d7215103f69bcd0fcae5a2a00 (diff) | |
feat: Android support (again)
Diffstat (limited to 'android/res/values')
| -rw-r--r-- | android/res/values/color.xml | 4 | ||||
| -rw-r--r-- | android/res/values/strings.xml | 6 | ||||
| -rw-r--r-- | android/res/values/styles.xml | 6 |
3 files changed, 16 insertions, 0 deletions
diff --git a/android/res/values/color.xml b/android/res/values/color.xml new file mode 100644 index 0000000..933353e --- /dev/null +++ b/android/res/values/color.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="ic_background_color">#FFFFFFFF</color> +</resources> diff --git a/android/res/values/strings.xml b/android/res/values/strings.xml new file mode 100644 index 0000000..cbe6c20 --- /dev/null +++ b/android/res/values/strings.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + + <string name="app_name">Maxon Petting Simulator</string> + +</resources> diff --git a/android/res/values/styles.xml b/android/res/values/styles.xml new file mode 100644 index 0000000..77377af --- /dev/null +++ b/android/res/values/styles.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="AppTheme" parent="android:Theme.Holo.Light.NoActionBar.Fullscreen"> + <item name="android:windowBackground">@color/ic_background_color</item> + </style> +</resources> |
