changeset 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 1c2a79313b04
children a149dabf6a1f
files android/AndroidManifest.xml
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/android/AndroidManifest.xml	Thu May 06 10:39:55 2021 +0000
+++ b/android/AndroidManifest.xml	Thu May 06 11:22:41 2021 +0000
@@ -2,12 +2,15 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="org.dbsoft.dwindows">
 
+    <uses-permission android:name="android.permission.INTERNET"/>
+
     <application
         android:allowBackup="true"
         android:icon="@mipmap/ic_launcher"
         android:label="@string/app_name"
         android:roundIcon="@mipmap/ic_launcher_round"
         android:supportsRtl="true"
+        android:usesCleartextTraffic="true"
         android:theme="@style/Theme.Dwtest">
         <activity android:name=".DWindows"
             android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
@@ -20,5 +23,4 @@
             </intent-filter>
         </activity>
     </application>
-
 </manifest>
\ No newline at end of file