2016-12-13 17:15:11 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-03-09 22:25:29 -08:00
|
|
|
package="com.android.carrierdefaultapp">
|
2016-12-13 17:15:11 -08:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" />
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
|
2017-03-09 22:25:29 -08:00
|
|
|
<uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
|
2016-12-13 17:15:11 -08:00
|
|
|
<uses-permission android:name="android.permission.CONNECTIVITY_USE_RESTRICTED_NETWORKS" />
|
2018-04-25 17:46:10 +09:00
|
|
|
<uses-permission android:name="android.permission.NETWORK_BYPASS_PRIVATE_DNS" />
|
2017-03-06 14:03:45 -08:00
|
|
|
<uses-permission android:name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME" />
|
2016-12-13 17:15:11 -08:00
|
|
|
|
2017-03-24 12:20:52 -07:00
|
|
|
<application
|
|
|
|
android:label="@string/app_name"
|
2018-03-16 10:36:35 -07:00
|
|
|
android:directBootAware="true"
|
|
|
|
android:usesCleartextTraffic="true">
|
2016-12-13 17:15:11 -08:00
|
|
|
<receiver android:name="com.android.carrierdefaultapp.CarrierDefaultBroadcastReceiver">
|
|
|
|
<intent-filter>
|
2017-02-10 16:08:02 -08:00
|
|
|
<action android:name="com.android.internal.telephony.CARRIER_SIGNAL_REDIRECTED" />
|
2017-04-26 16:05:25 -07:00
|
|
|
<action android:name="com.android.internal.telephony.CARRIER_SIGNAL_RESET" />
|
2017-05-23 14:55:27 -07:00
|
|
|
<action android:name="com.android.internal.telephony.CARRIER_SIGNAL_DEFAULT_NETWORK_AVAILABLE" />
|
2017-05-02 15:56:58 -07:00
|
|
|
<action android:name="android.intent.action.LOCALE_CHANGED" />
|
2016-12-13 17:15:11 -08:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2017-01-22 22:43:41 -08:00
|
|
|
<service android:name="com.android.carrierdefaultapp.ProvisionObserver"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"/>
|
2017-03-10 10:16:09 -08:00
|
|
|
<activity
|
|
|
|
android:name="com.android.carrierdefaultapp.CaptivePortalLoginActivity"
|
|
|
|
android:label="@string/action_bar_label"
|
|
|
|
android:theme="@style/AppTheme"
|
2017-05-23 14:55:27 -07:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize">
|
2017-03-10 10:16:09 -08:00
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-05-23 14:55:27 -07:00
|
|
|
|
|
|
|
<activity-alias
|
|
|
|
android:name="com.android.carrierdefaultapp.URLHandlerActivity"
|
|
|
|
android:targetActivity="com.android.carrierdefaultapp.CaptivePortalLoginActivity"
|
|
|
|
android:enabled="false" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
2016-12-13 17:15:11 -08:00
|
|
|
</application>
|
|
|
|
</manifest>
|