diff options
| author | mosimchah <mosimchah@gmail.com> | 2025-12-06 07:51:42 -0500 |
|---|---|---|
| committer | mosimchah <mosimchah@gmail.com> | 2025-12-06 07:51:42 -0500 |
| commit | 68ee0227ee3ab59cc0be116b4cda655e72b2ff05 (patch) | |
| tree | e07217be1267a534dedb86b85aa42c05144f5524 | |
| parent | ad0a3a25797f2d0eb5764dde25974f1f8064a5d3 (diff) | |
aicp: add our theme stub from w16.0_pre-rebase_12-3-25
https://github.com/AICP/vendor_aicp/tree/w16.0_pre-rebase-12-3-25
commit cb0fa5a574c2f31ae4b3f1d7e78fd2444d699aba
Author: DennySPb <dennyspb@gmail.com>
Date: Wed Sep 30 14:32:23 2020 +0300
Themes: extend stub package with custom clocks
Change-Id: I35d716ee09637a36e168993b828ea38382b2cfb6
Signed-off-by: DennySPb <dennyspb@gmail.com>
commit 35813b356824b1f4da69f003a492c62997734dc3
Author: Luca Stefani <luca.stefani.ge1@gmail.com>
Date: Fri Nov 1 21:54:56 2019 +0100
vendor_aicp: Add and build Aicp stub apk for themes
Change-Id: Id7ca6109371db4c5305730e8db3d4a79ee6128bd
Signed-off-by: doc HD <doc.divxm@gmail.com>
Change-Id: I7f727879be030106a7183262023eab5ad694c85e
| -rw-r--r-- | stub/Android.mk | 29 | ||||
| -rw-r--r-- | stub/AndroidManifest.xml | 4 | ||||
| -rw-r--r-- | stub/res/values/arrays.xml | 5 | ||||
| -rw-r--r-- | stub/res/values/strings.xml | 4 |
4 files changed, 42 insertions, 0 deletions
diff --git a/stub/Android.mk b/stub/Android.mk new file mode 100644 index 000000000..3d968689a --- /dev/null +++ b/stub/Android.mk @@ -0,0 +1,29 @@ +# +# 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_PRODUCT_MODULE := true + +LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res + +LOCAL_MANIFEST_FILE := AndroidManifest.xml + +LOCAL_PACKAGE_NAME := AicpThemesStub +LOCAL_SDK_VERSION := current + +include $(BUILD_PACKAGE) diff --git a/stub/AndroidManifest.xml b/stub/AndroidManifest.xml new file mode 100644 index 000000000..c023c8727 --- /dev/null +++ b/stub/AndroidManifest.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.customization"> + <application android:hasCode="false" android:label="@string/app_name"/> +</manifest> diff --git a/stub/res/values/arrays.xml b/stub/res/values/arrays.xml new file mode 100644 index 000000000..b27b2648c --- /dev/null +++ b/stub/res/values/arrays.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string-array name="themes" /> + <string-array name="clocks" /> +</resources> diff --git a/stub/res/values/strings.xml b/stub/res/values/strings.xml new file mode 100644 index 000000000..89ff29359 --- /dev/null +++ b/stub/res/values/strings.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">Aicp Themes</string> +</resources> |
