Mods: NetService and WebSocketService (#2385)

This commit is contained in:
Luke Street
2026-09-04 00:33:31 -06:00
committed by GitHub
parent fa70bb8fe8
commit 3efba4ccbd
33 changed files with 1979 additions and 324 deletions
@@ -19,6 +19,7 @@
android:appCategory="game"
android:icon="@mipmap/icon"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:theme="@android:style/Theme.NoTitleBar"
android:enableOnBackInvokedCallback="false">
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="false" />
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="false">localhost</domain>
<domain includeSubdomains="false">127.0.0.1</domain>
<domain includeSubdomains="false">::1</domain>
</domain-config>
</network-security-config>
+7
View File
@@ -85,5 +85,12 @@
<true/>
<key>LSSupportsGameMode</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
<key>NSLocalNetworkUsageDescription</key>
<string>Dusklight allows network-enabled mods to connect to devices on your local network.</string>
</dict>
</plist>
+7
View File
@@ -32,5 +32,12 @@
<string>public.app-category.adventure-games</string>
<key>LSSupportsGameMode</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
<key>NSLocalNetworkUsageDescription</key>
<string>Dusklight allows network-enabled mods to connect to devices on your local network.</string>
</dict>
</plist>
+7
View File
@@ -47,5 +47,12 @@
<string>Automatic</string>
<key>LSSupportsGameMode</key>
<true />
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
<key>NSLocalNetworkUsageDescription</key>
<string>Dusklight allows network-enabled mods to connect to devices on your local network.</string>
</dict>
</plist>