diff --git a/packages/overlays/IconShapeRoundedRectOverlay/Android.mk b/packages/overlays/IconShapeRoundedRectOverlay/Android.mk new file mode 100644 index 0000000000000..a734a6b46947b --- /dev/null +++ b/packages/overlays/IconShapeRoundedRectOverlay/Android.mk @@ -0,0 +1,30 @@ +# +# Copyright 2018, The Android Open Source 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. +# + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_RRO_THEME := IconShapeRoundedRect +LOCAL_CERTIFICATE := platform + +LOCAL_SRC_FILES := $(call all-subdir-java-files) + +LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res + +LOCAL_PACKAGE_NAME := IconShapeRoundedRectOverlay +LOCAL_SDK_VERSION := current + +include $(BUILD_RRO_PACKAGE) diff --git a/packages/overlays/IconShapeRoundedRectOverlay/AndroidManifest.xml b/packages/overlays/IconShapeRoundedRectOverlay/AndroidManifest.xml new file mode 100644 index 0000000000000..39c082b596046 --- /dev/null +++ b/packages/overlays/IconShapeRoundedRectOverlay/AndroidManifest.xml @@ -0,0 +1,27 @@ + + + + + + diff --git a/packages/overlays/IconShapeRoundedRectOverlay/res/values/config.xml b/packages/overlays/IconShapeRoundedRectOverlay/res/values/config.xml new file mode 100644 index 0000000000000..f024615190ab1 --- /dev/null +++ b/packages/overlays/IconShapeRoundedRectOverlay/res/values/config.xml @@ -0,0 +1,26 @@ + + + + + "M50,0L92,0C96.42,0 100,4.58 100 8L100,92C100, 96.42 96.42 100 92 100L8 100C4.58, 100 0 96.42 0 92L0 8 C 0 4.42 4.42 0 8 0L50 0Z" + + false + + + diff --git a/packages/overlays/IconShapeRoundedRectOverlay/res/values/strings.xml b/packages/overlays/IconShapeRoundedRectOverlay/res/values/strings.xml new file mode 100644 index 0000000000000..dc5c196c97aaa --- /dev/null +++ b/packages/overlays/IconShapeRoundedRectOverlay/res/values/strings.xml @@ -0,0 +1,23 @@ + + + + + RoundedRectangle Icons + + diff --git a/packages/overlays/AdaptiveIconChangeOverlay/Android.mk b/packages/overlays/IconShapeSquareOverlay/Android.mk similarity index 91% rename from packages/overlays/AdaptiveIconChangeOverlay/Android.mk rename to packages/overlays/IconShapeSquareOverlay/Android.mk index 6e3b8cbbcf2f7..217da9feb5349 100644 --- a/packages/overlays/AdaptiveIconChangeOverlay/Android.mk +++ b/packages/overlays/IconShapeSquareOverlay/Android.mk @@ -17,14 +17,14 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) -LOCAL_RRO_THEME := SquareIcon +LOCAL_RRO_THEME := IconShapeSquare LOCAL_CERTIFICATE := platform LOCAL_SRC_FILES := $(call all-subdir-java-files) LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res -LOCAL_PACKAGE_NAME := SquareIconOverlay +LOCAL_PACKAGE_NAME := IconShapeSquareOverlay LOCAL_SDK_VERSION := current include $(BUILD_RRO_PACKAGE) diff --git a/packages/overlays/AdaptiveIconChangeOverlay/AndroidManifest.xml b/packages/overlays/IconShapeSquareOverlay/AndroidManifest.xml similarity index 91% rename from packages/overlays/AdaptiveIconChangeOverlay/AndroidManifest.xml rename to packages/overlays/IconShapeSquareOverlay/AndroidManifest.xml index 33da51047bf07..235fdeb22648a 100644 --- a/packages/overlays/AdaptiveIconChangeOverlay/AndroidManifest.xml +++ b/packages/overlays/IconShapeSquareOverlay/AndroidManifest.xml @@ -23,5 +23,5 @@ android:category="android.theme.customization.adaptive_icon_shape" android:priority="1"/> - + diff --git a/packages/overlays/AdaptiveIconChangeOverlay/res/values/config.xml b/packages/overlays/IconShapeSquareOverlay/res/values/config.xml similarity index 100% rename from packages/overlays/AdaptiveIconChangeOverlay/res/values/config.xml rename to packages/overlays/IconShapeSquareOverlay/res/values/config.xml diff --git a/packages/overlays/AdaptiveIconChangeOverlay/res/values/strings.xml b/packages/overlays/IconShapeSquareOverlay/res/values/strings.xml similarity index 86% rename from packages/overlays/AdaptiveIconChangeOverlay/res/values/strings.xml rename to packages/overlays/IconShapeSquareOverlay/res/values/strings.xml index 64b7d0dc16b57..4fd39ff26bae7 100644 --- a/packages/overlays/AdaptiveIconChangeOverlay/res/values/strings.xml +++ b/packages/overlays/IconShapeSquareOverlay/res/values/strings.xml @@ -17,7 +17,7 @@ */ --> - - Square Icons + + Square Icons diff --git a/packages/overlays/IconShapeSquircleOverlay/Android.mk b/packages/overlays/IconShapeSquircleOverlay/Android.mk new file mode 100644 index 0000000000000..fd3bfa06de835 --- /dev/null +++ b/packages/overlays/IconShapeSquircleOverlay/Android.mk @@ -0,0 +1,30 @@ +# +# Copyright 2018, The Android Open Source 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. +# + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_RRO_THEME := IconShapeSquircle +LOCAL_CERTIFICATE := platform + +LOCAL_SRC_FILES := $(call all-subdir-java-files) + +LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res + +LOCAL_PACKAGE_NAME := IconShapeSquircleOverlay +LOCAL_SDK_VERSION := current + +include $(BUILD_RRO_PACKAGE) diff --git a/packages/overlays/IconShapeSquircleOverlay/AndroidManifest.xml b/packages/overlays/IconShapeSquircleOverlay/AndroidManifest.xml new file mode 100644 index 0000000000000..ca618e4142b9b --- /dev/null +++ b/packages/overlays/IconShapeSquircleOverlay/AndroidManifest.xml @@ -0,0 +1,27 @@ + + + + + + diff --git a/packages/overlays/IconShapeSquircleOverlay/res/values/config.xml b/packages/overlays/IconShapeSquircleOverlay/res/values/config.xml new file mode 100644 index 0000000000000..eaf7de3b153d4 --- /dev/null +++ b/packages/overlays/IconShapeSquircleOverlay/res/values/config.xml @@ -0,0 +1,26 @@ + + + + + "M50,0 C10,0 0,10 0,50 0,90 10,100 50,100 90,100 100,90 100,50 100,10 90,0 50,0 Z" + + false + + + diff --git a/packages/overlays/IconShapeSquircleOverlay/res/values/strings.xml b/packages/overlays/IconShapeSquircleOverlay/res/values/strings.xml new file mode 100644 index 0000000000000..b7c001c68a308 --- /dev/null +++ b/packages/overlays/IconShapeSquircleOverlay/res/values/strings.xml @@ -0,0 +1,23 @@ + + + + + Square Icons + + diff --git a/packages/overlays/IconShapeTeardropOverlay/Android.mk b/packages/overlays/IconShapeTeardropOverlay/Android.mk new file mode 100644 index 0000000000000..ea43423f93baa --- /dev/null +++ b/packages/overlays/IconShapeTeardropOverlay/Android.mk @@ -0,0 +1,30 @@ +# +# Copyright 2018, The Android Open Source 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. +# + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_RRO_THEME := IconShapeTeardrop +LOCAL_CERTIFICATE := platform + +LOCAL_SRC_FILES := $(call all-subdir-java-files) + +LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res + +LOCAL_PACKAGE_NAME := IconShapeTeardropOverlay +LOCAL_SDK_VERSION := current + +include $(BUILD_RRO_PACKAGE) diff --git a/packages/overlays/IconShapeTeardropOverlay/AndroidManifest.xml b/packages/overlays/IconShapeTeardropOverlay/AndroidManifest.xml new file mode 100644 index 0000000000000..b7d5ecb820d9a --- /dev/null +++ b/packages/overlays/IconShapeTeardropOverlay/AndroidManifest.xml @@ -0,0 +1,27 @@ + + + + + + diff --git a/packages/overlays/IconShapeTeardropOverlay/res/values/config.xml b/packages/overlays/IconShapeTeardropOverlay/res/values/config.xml new file mode 100644 index 0000000000000..43ad04d69c736 --- /dev/null +++ b/packages/overlays/IconShapeTeardropOverlay/res/values/config.xml @@ -0,0 +1,26 @@ + + + + + "M50,0A50,50,0,0 1 100,50 L100,85 A15,15,0,0 1 85,100 L50,100 A50,50,0,0 1 50,0z" + + false + + + diff --git a/packages/overlays/IconShapeTeardropOverlay/res/values/strings.xml b/packages/overlays/IconShapeTeardropOverlay/res/values/strings.xml new file mode 100644 index 0000000000000..d946ee8f97f20 --- /dev/null +++ b/packages/overlays/IconShapeTeardropOverlay/res/values/strings.xml @@ -0,0 +1,23 @@ + + + + + Teardrop Icons + +