]> git.cworth.org Git - lmno.games/commitdiff
Enable network requests in mac os app
authorKevin Worth <kworth082@gmail.com>
Fri, 15 May 2020 13:03:32 +0000 (09:03 -0400)
committerCarl Worth <cworth@cworth.org>
Sat, 23 May 2020 13:49:00 +0000 (06:49 -0700)
According to documentation here:

    https://flutter.dev/desktop#setting-up-entitlements

this change is needed so that the app can send network requests

flutterempires/macos/Runner/DebugProfile.entitlements

index dddb8a30c851e7ef5b16a9108934bd1217b6b43f..08c3ab17cc263a50bd1d67b108c0689c69e7aba8 100644 (file)
@@ -8,5 +8,7 @@
        <true/>
        <key>com.apple.security.network.server</key>
        <true/>
+       <key>com.apple.security.network.client</key>
+       <true/>
 </dict>
 </plist>