summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
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 /AndroidManifest.xml
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 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..ebbb429
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ android:versionCode="1"
+ android:versionName="1.0.0"
+ package="com.android.carrierconfig">
+
+ <application android:allowBackup="false">
+ <service android:name=".DefaultCarrierConfigService"
+ android:permission="android.permission.BIND_CARRIER_CONFIG_SERVICE">
+ <intent-filter>
+ <action android:name="android.service.carrier.CarrierConfigService" />
+ </intent-filter>
+ </service>
+ </application>
+</manifest>