From 216e7dba6cf1d42689c0e0c62cbf9a1817d43529 Mon Sep 17 00:00:00 2001 From: Chih-Wei Huang Date: Thu, 25 Aug 2016 03:04:56 +0800 Subject: [PATCH] Fix building errors on Android 7.0 The new rules require that we explicitly specify the static java library is uninstallable. --- Android.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.mk b/Android.mk index 137e0f9..bef486a 100644 --- a/Android.mk +++ b/Android.mk @@ -5,5 +5,6 @@ include $(CLEAR_VARS) LOCAL_MODULE := googleanalytics LOCAL_SRC_FILES := lib/libGoogleAnalyticsServices.jar LOCAL_MODULE_CLASS := JAVA_LIBRARIES +LOCAL_UNINSTALLABLE_MODULE := true include $(BUILD_PREBUILT) -- 2.11.0