prebuilts: Move all prebuilt apk's from vendor/bliss [2/2]
Signed-off-by: Jackeagle <jackeagle102@gmail.com>
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..786c514
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,17 @@
+android_app_import {
+ name: "Phonograph",
+ apk: "app/Phonograph.apk",
+ presigned: true,
+ dex_preopt: {
+ enabled: false,
+ },
+}
+
+android_app_import {
+ name: "SimpleGalleryPro",
+ apk: "app/SimpleGalleryPro.apk",
+ presigned: true,
+ dex_preopt: {
+ enabled: false,
+ },
+}
diff --git a/app/Phonograph.apk b/app/Phonograph.apk
new file mode 100644
index 0000000..f0cef75
--- /dev/null
+++ b/app/Phonograph.apk
Binary files differ
diff --git a/app/SimpleGalleryPro.apk b/app/SimpleGalleryPro.apk
new file mode 100644
index 0000000..fc22912
--- /dev/null
+++ b/app/SimpleGalleryPro.apk
Binary files differ
diff --git a/prebuilts.mk b/prebuilts.mk
new file mode 100644
index 0000000..c05873e
--- /dev/null
+++ b/prebuilts.mk
@@ -0,0 +1,24 @@
+#
+# Copyright (C) 2018-2021 The BlissRoms 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.
+#
+
+# Bliss packages
+ifeq ($(BLISS_BUILD_VARIANT), vanilla)
+PRODUCT_PACKAGES += \
+ SimpleGalleryPro
+endif
+
+PRODUCT_PACKAGES += \
+ Phonograph \