Add initial stub apk for themes
Change-Id: Id7ca6109371db4c5305730e8db3d4a79ee6128bd
diff --git a/stub/Android.mk b/stub/Android.mk
new file mode 100644
index 0000000..0129e25
--- /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 := LineageThemesStub
+LOCAL_SDK_VERSION := current
+
+include $(BUILD_PACKAGE)
diff --git a/stub/AndroidManifest.xml b/stub/AndroidManifest.xml
new file mode 100644
index 0000000..ff3a7d7
--- /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="org.lineageos.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 0000000..9172eff
--- /dev/null
+++ b/stub/res/values/arrays.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string-array name="themes" />
+</resources>
diff --git a/stub/res/values/strings.xml b/stub/res/values/strings.xml
new file mode 100644
index 0000000..fe79f43
--- /dev/null
+++ b/stub/res/values/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="app_name">Lineage Themes</string>
+</resources>