summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorEdward Cross <edward.k.cross@gmail.com>2018-07-31 15:17:57 +0200
committerMichael Bestas <mkbestas@lineageos.org>2019-12-12 15:18:16 +0200
commit2ff76ca66a76f3efc96198967c3d1c94d2b8de77 (patch)
treec462dd9ad3c14a3bbcbf1840a989346068807e7f /Android.mk
parentc2e244a55e8826fd5262df60e5c35aa324dbc1fa (diff)
downloadandroid_packages_apps_Trebuchet-2ff76ca66a76f3efc96198967c3d1c94d2b8de77.tar.gz
android_packages_apps_Trebuchet-2ff76ca66a76f3efc96198967c3d1c94d2b8de77.tar.bz2
android_packages_apps_Trebuchet-2ff76ca66a76f3efc96198967c3d1c94d2b8de77.zip
Launcher3: Google Feed integration
If Google Search is installed, the Google Feed can be found at the -1 screen (which is the very left). This feature is enabled by default. Change-Id: I495196818699fd378cd60e6dd61b07a0ab951762
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk16
1 files changed, 15 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index a765b1399..811322f7a 100644
--- a/Android.mk
+++ b/Android.mk
@@ -40,6 +40,18 @@ LOCAL_MODULE := LauncherPluginLib
include $(BUILD_STATIC_JAVA_LIBRARY)
#
+# Prebuilt Google Feed library
+#
+include $(CLEAR_VARS)
+LOCAL_MODULE := libGoogleFeed
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE_CLASS := JAVA_LIBRARIES
+LOCAL_SRC_FILES := libs/libGoogleFeed.jar
+LOCAL_UNINSTALLABLE_MODULE := true
+LOCAL_SDK_VERSION := 27
+include $(BUILD_PREBUILT)
+
+#
# Build rule for Launcher3 dependencies lib.
#
include $(CLEAR_VARS)
@@ -53,7 +65,9 @@ LOCAL_STATIC_ANDROID_LIBRARIES := \
androidx.preference_preference \
iconloader_base
-LOCAL_STATIC_JAVA_LIBRARIES := LauncherPluginLib
+LOCAL_STATIC_JAVA_LIBRARIES := \
+ LauncherPluginLib \
+ libGoogleFeed
LOCAL_SRC_FILES := \
$(call all-proto-files-under, protos) \