Skip to content

Commit b17ce7e

Browse files
committed
feat: shorebird installation
1 parent e296aec commit b17ce7e

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ or
3131

3232
1. Linux Support.
3333
2. Dark mode support.
34-
3. Shorebird support.
34+
3. Shorebird support.
3535
4. Websocket connection history.
3636
5. Websocket speed metrics and custom logs.
3737
6. modern UI re-design.

macos/Runner/Release.entitlements

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict>
5-
<key>com.apple.security.app-sandbox</key>
6-
<true />
7-
<key>com.apple.security.network.client</key>
8-
<true />
9-
</dict>
10-
</plist>
4+
<dict>
5+
<key>com.apple.security.app-sandbox</key>
6+
<true/>
7+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8+
<true/>
9+
<key>com.apple.security.network.client</key>
10+
<true/>
11+
</dict>
12+
</plist>

pubspec.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ flutter:
5959

6060
assets:
6161
- assets/images/
62+
- shorebird.yaml
6263

6364
fonts:
6465
- family: Nunito

shorebird.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This file is used to configure the Shorebird updater used by your app.
2+
# Learn more at https://docs.shorebird.dev
3+
# This file does not contain any sensitive information and should be checked into version control.
4+
5+
# Your app_id is the unique identifier assigned to your app.
6+
# It is used to identify your app when requesting patches from Shorebird's servers.
7+
# It is not a secret and can be shared publicly.
8+
app_id: 70bdc34b-eb7d-4c7e-a57f-7350854618aa
9+
10+
# auto_update controls if Shorebird should automatically update in the background on launch.
11+
# If auto_update: false, you will need to use package:shorebird_code_push to trigger updates.
12+
# https://pub.dev/packages/shorebird_code_push
13+
# Uncomment the following line to disable automatic updates.
14+
# auto_update: false

0 commit comments

Comments
 (0)