summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorEdward Cross <edward.k.cross@gmail.com>2018-07-31 15:17:57 +0200
committerBruno Martins <bgcngm@gmail.com>2019-10-20 14:00:37 +0100
commitbe1ef90bcb60be4f9c74e36f20cf4cdbc06a5d81 (patch)
tree15922196d36d2b091204c1d54508646a78254d63 /Android.mk
parent510a31bc483cc2098210fd83bf2ca2b721e7818a (diff)
downloadandroid_packages_apps_Trebuchet-be1ef90bcb60be4f9c74e36f20cf4cdbc06a5d81.tar.gz
android_packages_apps_Trebuchet-be1ef90bcb60be4f9c74e36f20cf4cdbc06a5d81.tar.bz2
android_packages_apps_Trebuchet-be1ef90bcb60be4f9c74e36f20cf4cdbc06a5d81.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) \