blob: 123559adf6fd65644f8d693d65eb01f55196d378 [file] [log] [blame]
Ecco Park8c650a22018-03-29 18:43:31 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4 * Copyright (C) 2018 The Android Open Source Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ecco Park1afbb6c2018-10-25 15:36:14 -070020 package="com.android.hotspot2">
21 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
22 <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
23 <uses-permission android:name="android.permission.INTERNET"/>
Ecco Park8c650a22018-03-29 18:43:31 -070024
25 <application
Ecco Parkc06a96a2018-08-21 10:53:54 -070026 android:networkSecurityConfig="@xml/network_security_config"
Ecco Park8c650a22018-03-29 18:43:31 -070027 android:enabled="true"
28 android:label="@string/app_name"
29 android:configChanges="keyboardHidden|orientation|screenSize"
30 android:supportsRtl="true">
Ecco Park1afbb6c2018-10-25 15:36:14 -070031 <activity android:name="com.android.hotspot2.osu.OsuLoginActivity"
32 android:label="@string/action_bar_label"
33 android:theme="@style/AppTheme"
34 android:configChanges="keyboardHidden|orientation|screenSize">
Ecco Park8c650a22018-03-29 18:43:31 -070035 <intent-filter>
36 <action android:name="android.net.wifi.action.PASSPOINT_LAUNCH_OSU_VIEW"/>
37 <category android:name="android.intent.category.DEFAULT"/>
38 </intent-filter>
39 </activity>
40 </application>
41</manifest>