aboutsummaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2011-11-15 16:22:44 -0800
committerAndy McFadden <fadden@android.com>2011-11-15 16:22:44 -0800
commit8d8d7cf86ebf7e34dc42dab0bfbe3930ad95f983 (patch)
tree7b62edc3100517b04500930b413e41db205722e0 /Android.mk
parentb2c9185bf64d9ddf1c0959fbefe6ed8cb99d4c2d (diff)
downloadandroid_frameworks_opt_calendar-8d8d7cf86ebf7e34dc42dab0bfbe3930ad95f983.tar.gz
android_frameworks_opt_calendar-8d8d7cf86ebf7e34dc42dab0bfbe3930ad95f983.tar.bz2
android_frameworks_opt_calendar-8d8d7cf86ebf7e34dc42dab0bfbe3930ad95f983.zip
Stop including libphonenumber
No longer used by Calendar app. Bug 5578068 Change-Id: I7d7b51ac334f7dee7fbca7748a3c461f04f6b126
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk10
1 files changed, 1 insertions, 9 deletions
diff --git a/Android.mk b/Android.mk
index 7f8af1b..494c91e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -17,15 +17,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := calendar-common
LOCAL_SDK_VERSION := current
-
-# We want to use libphonenumber in the app. It's a private API, which means
-# we can't use it directly from an unundled app, so we build a static copy
-# here. Because it's also part of ext.jar, we need to rename its package,
-# or the class loaders will favor the (possibly incompatible) framework copy.
-LOCAL_SRC_FILES := \
- $(call all-java-files-under, src) \
- $(call all-java-files-under, ../../../external/libphonenumber/java/src)
-LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
include $(BUILD_STATIC_JAVA_LIBRARY)