summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorJonathan Basseri <misterikkit@google.com>2015-03-18 11:22:19 -0700
committerJonathan Basseri <misterikkit@google.com>2015-04-16 10:19:21 -0700
commit3a4ccd212feb29a1c6c32b0e4e4cd9aae923ad1a (patch)
tree3196f8e465517c939602b5ec04ffbf4d6322ca14 /Android.mk
parent750b4580a6a506b59e79399e8f0f7fe4f54a7d04 (diff)
downloadandroid_packages_apps_CarrierConfig-3a4ccd212feb29a1c6c32b0e4e4cd9aae923ad1a.tar.gz
android_packages_apps_CarrierConfig-3a4ccd212feb29a1c6c32b0e4e4cd9aae923ad1a.tar.bz2
android_packages_apps_CarrierConfig-3a4ccd212feb29a1c6c32b0e4e4cd9aae923ad1a.zip
Initial commit for the new Default Carrier Config app.
This app will eventually own carrier/telephony configuration that is currently stored in config.xml overlays. For now it only has a few of the variables that will be migrated. Bug: b/19483786 Change-Id: I66a25f232a5e1ff6b8f988a3497d70ee8dd32e82
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..40744ed
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-subdir-java-files)
+
+LOCAL_JAVA_LIBRARIES := telephony-common
+
+LOCAL_PACKAGE_NAME := CarrierConfig
+LOCAL_CERTIFICATE := platform
+LOCAL_PRIVILEGED_MODULE := true
+
+LOCAL_PROGUARD_FLAG_FILES := proguard.flags
+
+include $(BUILD_PACKAGE)
+