Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| 4 | * Copyright (C) 2014 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" |
Remi NGUYEN VAN | 4af3cda | 2019-02-28 11:28:50 +0900 | [diff] [blame] | 20 | package="com.android.captiveportallogin" |
Akshay | 296acdf | 2019-04-04 14:41:41 -0700 | [diff] [blame] | 21 | android:versionCode="210000000" |
Remi NGUYEN VAN | 4af3cda | 2019-02-28 11:28:50 +0900 | [diff] [blame] | 22 | android:versionName="Q-initial"> |
Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 23 | |
Remi NGUYEN VAN | f4249c3 | 2019-03-01 10:01:24 +0900 | [diff] [blame] | 24 | <uses-sdk android:minSdkVersion="28" android:targetSdkVersion="28" /> |
Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.INTERNET" /> |
Paul Jensen | 8df099d | 2014-09-26 15:19:17 -0400 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
Remi NGUYEN VAN | 4727427 | 2019-01-30 23:39:24 +0900 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| 28 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
Remi NGUYEN VAN | 62594fd | 2018-04-25 17:46:10 +0900 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.NETWORK_BYPASS_PRIVATE_DNS" /> |
Remi NGUYEN VAN | ab96bc7 | 2019-02-15 17:45:03 +0900 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.MAINLINE_NETWORK_STACK" /> |
Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 31 | |
Adam Newman | d816a2a | 2018-03-16 10:36:35 -0700 | [diff] [blame] | 32 | <application android:label="@string/app_name" |
Takayuki, Ogura | cc38781 | 2018-09-13 12:40:28 +0900 | [diff] [blame] | 33 | android:usesCleartextTraffic="true" |
| 34 | android:supportsRtl="true" > |
Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 35 | <activity |
| 36 | android:name="com.android.captiveportallogin.CaptivePortalLoginActivity" |
| 37 | android:label="@string/action_bar_label" |
Paul Jensen | 84ea5f4 | 2016-03-18 09:35:32 -0400 | [diff] [blame] | 38 | android:theme="@style/AppTheme" |
| 39 | android:configChanges="keyboardHidden|orientation|screenSize" > |
Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 40 | <intent-filter> |
Paul Jensen | 25a217c | 2015-02-27 22:55:47 -0500 | [diff] [blame] | 41 | <action android:name="android.net.conn.CAPTIVE_PORTAL"/> |
Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 42 | <category android:name="android.intent.category.DEFAULT"/> |
Paul Jensen | 869868be | 2014-05-15 10:33:05 -0400 | [diff] [blame] | 43 | </intent-filter> |
| 44 | </activity> |
| 45 | </application> |
| 46 | </manifest> |