android: add (disabled) android.permission.INTERNET to AndroidManifest.xml

It's required for SDL3_net
This commit is contained in:
Anonymous Maarten 2024-10-24 23:52:45 +02:00 committed by Anonymous Maarten
parent 850158f83f
commit 20e01c6fbe

View file

@ -56,6 +56,12 @@
<!-- Allow access to the vibrator -->
<uses-permission android:name="android.permission.VIBRATE" />
<!-- Allow access to Internet -->
<!-- if you want to connect to the network or internet, uncomment this. -->
<!--
<uses-permission android:name="android.permission.INTERNET" />
-->
<!-- Create a Java class extending SDLActivity and place it in a
directory under app/src/main/java matching the package, e.g. app/src/main/java/com/gamemaker/game/MyGame.java