This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
embedded-webview/tools/set-bundle-identifier.sh

8 lines
205 B
Bash

#!/bin/bash
BUNDLE_NAME="$1"
echo "Setting the ios bundle name to $BUNDLE_NAME"
sed -i "s/PRODUCT_BUNDLE_IDENTIFIER = .*;/PRODUCT_BUNDLE_IDENTIFIER = $BUNDLE_NAME;" ios/Runner.xcodeproj/project.pbxproj