summaryrefslogtreecommitdiff
path: root/themes/AndroidManifest.xml
diff options
context:
space:
mode:
authorKunhung Li <kunhungli@google.com>2022-07-06 16:19:47 +0800
committerSantiago Etchebehere <santie@google.com>2022-08-02 22:48:40 +0000
commit7b10d5b21d5a38af930c6748eba566e88fc88fa0 (patch)
tree26c5f3f3ccb8f0e7decc351bf8eead1c58d23546 /themes/AndroidManifest.xml
parentf4b41c4a1475e1eed686e9a511b12ccd4fd89e6a (diff)
downloadThemePicker-7b10d5b21d5a38af930c6748eba566e88fc88fa0.tar.gz
Enable color functions for ThemePicker
- Add color section for ThemePicker. - Define theme stub apk with rainbow colors. - Video: https://drive.google.com/file/d/1s_cpn1OegbD1Lof2PxaUVV08BTwpzimp/view Flag: No impact to existing product: just moves code to AOSP for reference Bug: 218396282 Test: Push apks with paths below & test. /system_ext/priv-app/ThemePicker/ThemePicker.apk /product/app/ThemesStub/ThemesStub.apk Change-Id: I25130573ffb37075b4b71c6b83b7b903b6421ce3
Diffstat (limited to 'themes/AndroidManifest.xml')
-rwxr-xr-xthemes/AndroidManifest.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/AndroidManifest.xml b/themes/AndroidManifest.xml
new file mode 100755
index 00000000..68ead899
--- /dev/null
+++ b/themes/AndroidManifest.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.customization.themes"
+ android:versionCode="1">
+
+ <uses-sdk
+ android:minSdkVersion="31"
+ android:targetSdkVersion="31"/>
+
+ <application
+ android:hasCode="false"
+ android:label="@string/app_name"/>
+
+</manifest>