diff options
author | Javier <dev.git@javispedro.com> | 2020-07-26 18:11:10 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2021-03-21 01:53:33 +0100 |
commit | 0119e703ff4a8f3201610c2866702f7f92da0b26 (patch) | |
tree | 29e9b48c7850024bfa5270b661dfe2899a82affe /app/src/main/res/values | |
download | autobluetether-0119e703ff4a8f3201610c2866702f7f92da0b26.tar.gz autobluetether-0119e703ff4a8f3201610c2866702f7f92da0b26.zip |
initial import
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/colors.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/values/dimens.xml | 4 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 10 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 10 |
4 files changed, 30 insertions, 0 deletions
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..4faecfa --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <color name="colorPrimary">#6200EE</color> + <color name="colorPrimaryDark">#3700B3</color> + <color name="colorAccent">#03DAC5</color> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml new file mode 100644 index 0000000..ca514d8 --- /dev/null +++ b/app/src/main/res/values/dimens.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <dimen name="text_margin">16dp</dimen> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..e86eff1 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,10 @@ +<resources> + <string name="app_name">Autobluetether</string> + + <string name="missing_write_settings">Permission to write to system settings has not been granted. It is required to enable Bluetooth tethering setting.</string> + <string name="manage_write_settings">Grant access to system settings</string> + + <string name="device_list_header">Bluetooth tethering will be enabled automatically when any of the following selected devices is connected:</string> + + <string name="prefs_key_device_list">device_list</string> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..fac9291 --- /dev/null +++ b/app/src/main/res/values/styles.xml @@ -0,0 +1,10 @@ +<resources> + <!-- Base application theme. --> + <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> + <!-- Customize your theme here. --> + <item name="colorPrimary">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> + <item name="colorAccent">@color/colorAccent</item> + </style> + +</resources>
\ No newline at end of file |