mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-18 15:42:54 +00:00
9 lines
503 B
Bash
Executable File
9 lines
503 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
DEFAULT_APP_LINK_URL="your.deep.link.host.tld"
|
|
APP_LINK_URL="${APP_LINK_URL:-$DEFAULT_APP_LINK_URL}"
|
|
ENTITLEMENTS_FILE="app/ios/App/App/App.entitlements"
|
|
|
|
/usr/libexec/PlistBuddy -c "Delete :com.apple.developer.associated-domains string $APP_LINK_URL" $ENTITLEMENTS_FILE
|
|
/usr/libexec/PlistBuddy -c "Add :com.apple.developer.associated-domains array" $ENTITLEMENTS_FILE
|
|
/usr/libexec/PlistBuddy -c "Add :com.apple.developer.associated-domains:0 string $APP_LINK_URL" $ENTITLEMENTS_FILE |