summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
blob: 29a9860067d3e8717ed3c4b0b7cca7b9fd56cd9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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"
                 android:directBootAware="true">
        <service android:name=".DefaultCarrierConfigService"
                 android:permission="android.permission.BIND_CARRIER_SERVICES">
            <intent-filter>
                <action android:name="android.service.carrier.CarrierService" />
            </intent-filter>
        </service>
    </application>
</manifest>