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
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)
+