diff options
| author | Mister Oyster <oysterized@gmail.com> | 2017-01-04 15:29:55 +0100 |
|---|---|---|
| committer | Mister Oyster <oysterized@gmail.com> | 2017-01-04 17:08:44 +0100 |
| commit | c36cb43fd6a862df8b82e2a75c4adf4c606c61c9 (patch) | |
| tree | 495db397c3ee263753338d5818bb602c0092a40f | |
| parent | e6b8a51cce0b0a8202fcf7acc8d90dee1f7fac1e (diff) | |
cmactions: missing files
| -rw-r--r-- | cmactions/Android.mk | 16 | ||||
| -rw-r--r-- | cmactions/proguard.flags | 3 | ||||
| -rw-r--r-- | cmactions/res/mipmap-xhdpi/ic_launcher_settings.png | bin | 0 -> 8605 bytes | |||
| -rw-r--r-- | cmactions/res/mipmap-xxhdpi/ic_launcher_settings.png | bin | 0 -> 14731 bytes | |||
| -rw-r--r-- | cmactions/res/mipmap-xxxhdpi/ic_launcher_settings.png | bin | 0 -> 21728 bytes | |||
| -rw-r--r-- | cmactions/res/values/colors.xml | 22 | ||||
| -rw-r--r-- | cmactions/res/values/dimens.xml | 20 | ||||
| -rw-r--r-- | cmactions/res/values/styles.xml | 29 |
8 files changed, 90 insertions, 0 deletions
diff --git a/cmactions/Android.mk b/cmactions/Android.mk new file mode 100644 index 0000000..a098093 --- /dev/null +++ b/cmactions/Android.mk @@ -0,0 +1,16 @@ +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := optional + +LOCAL_SRC_FILES := $(call all-java-files-under, src) + +LOCAL_PACKAGE_NAME := CMActions +LOCAL_CERTIFICATE := platform +LOCAL_PRIVILEGED_MODULE := true + +LOCAL_PROGUARD_FLAG_FILES := proguard.flags + +include $(BUILD_PACKAGE) + +include $(call all-makefiles-under,$(LOCAL_PATH)) diff --git a/cmactions/proguard.flags b/cmactions/proguard.flags new file mode 100644 index 0000000..def5066 --- /dev/null +++ b/cmactions/proguard.flags @@ -0,0 +1,3 @@ +-keep class org.cyanogenmod.CMActions.* { + *; +} diff --git a/cmactions/res/mipmap-xhdpi/ic_launcher_settings.png b/cmactions/res/mipmap-xhdpi/ic_launcher_settings.png Binary files differnew file mode 100644 index 0000000..fa8c813 --- /dev/null +++ b/cmactions/res/mipmap-xhdpi/ic_launcher_settings.png diff --git a/cmactions/res/mipmap-xxhdpi/ic_launcher_settings.png b/cmactions/res/mipmap-xxhdpi/ic_launcher_settings.png Binary files differnew file mode 100644 index 0000000..3fa69e9 --- /dev/null +++ b/cmactions/res/mipmap-xxhdpi/ic_launcher_settings.png diff --git a/cmactions/res/mipmap-xxxhdpi/ic_launcher_settings.png b/cmactions/res/mipmap-xxxhdpi/ic_launcher_settings.png Binary files differnew file mode 100644 index 0000000..72946b7 --- /dev/null +++ b/cmactions/res/mipmap-xxxhdpi/ic_launcher_settings.png diff --git a/cmactions/res/values/colors.xml b/cmactions/res/values/colors.xml new file mode 100644 index 0000000..c1f38af --- /dev/null +++ b/cmactions/res/values/colors.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The CyanogenMod Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources> + <!-- Palette colors referenced by top-level themes. --> + <color name="theme_primary">#ff263238</color> + <color name="theme_primary_dark">#ff21272b</color> + <color name="theme_accent">#ff009688</color> +</resources> diff --git a/cmactions/res/values/dimens.xml b/cmactions/res/values/dimens.xml new file mode 100644 index 0000000..133701d --- /dev/null +++ b/cmactions/res/values/dimens.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The CyanogenMod Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources> + <!-- ActionBar contentInsetStart --> + <dimen name="actionbar_subsettings_contentInsetStart">72dp</dimen> +</resources> diff --git a/cmactions/res/values/styles.xml b/cmactions/res/values/styles.xml new file mode 100644 index 0000000..b013f16 --- /dev/null +++ b/cmactions/res/values/styles.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2014-2015 The CyanogenMod Project + + Licensed under the Apache License, Version 2.0 (the "License" + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<resources> + <style name="Theme.Main" parent="@android:style/Theme.Material.Light.DarkActionBar"> + <item name="android:colorPrimary">@color/theme_primary</item> + <item name="android:colorPrimaryDark">@color/theme_primary_dark</item> + <item name="android:colorAccent">@color/theme_accent</item> + <!-- Redefine the ActionBar style for contentInsetStart --> + <item name="android:actionBarStyle">@style/Theme.ActionBar.SubSettings</item> + </style> + + <style name="Theme.ActionBar.SubSettings" parent="@android:style/Widget.Material.Light.ActionBar.Solid"> + <item name="android:contentInsetStart">@dimen/actionbar_subsettings_contentInsetStart</item> + </style> +</resources> |
