comparison android/AndroidManifest.xml @ 2504:25c56d77d016

Android: Update AndroidManifest.xml to allow Internet and HTTP connections.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 06 May 2021 11:22:41 +0000
parents 4ae2b3b77f25
children c0be28906839
comparison
equal deleted inserted replaced
2503:1c2a79313b04 2504:25c56d77d016
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.dbsoft.dwindows"> 3 package="org.dbsoft.dwindows">
4
5 <uses-permission android:name="android.permission.INTERNET"/>
4 6
5 <application 7 <application
6 android:allowBackup="true" 8 android:allowBackup="true"
7 android:icon="@mipmap/ic_launcher" 9 android:icon="@mipmap/ic_launcher"
8 android:label="@string/app_name" 10 android:label="@string/app_name"
9 android:roundIcon="@mipmap/ic_launcher_round" 11 android:roundIcon="@mipmap/ic_launcher_round"
10 android:supportsRtl="true" 12 android:supportsRtl="true"
13 android:usesCleartextTraffic="true"
11 android:theme="@style/Theme.Dwtest"> 14 android:theme="@style/Theme.Dwtest">
12 <activity android:name=".DWindows" 15 <activity android:name=".DWindows"
13 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden" 16 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
14 android:screenOrientation="fullSensor" 17 android:screenOrientation="fullSensor"
15 android:persistent="true"> 18 android:persistent="true">
18 21
19 <category android:name="android.intent.category.LAUNCHER" /> 22 <category android:name="android.intent.category.LAUNCHER" />
20 </intent-filter> 23 </intent-filter>
21 </activity> 24 </activity>
22 </application> 25 </application>
23
24 </manifest> 26 </manifest>