diff options
author | stephana <stephana@google.com> | 2016-05-20 11:20:38 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-20 11:20:38 -0700 |
commit | de8af07e41efd335cb0f6fad131787ac363c4970 (patch) | |
tree | 04bc948285eccde312ccad4f3b5b855b60439f43 | |
parent | 87f15c8ff11ad2bfb0c6711d7837020a50fe7fb8 (diff) |
Remove custom bundle ID for iOS
BUG=skia:
R=borenet
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=1998273002
Review-Url: https://codereview.chromium.org/1998273002
-rw-r--r-- | experimental/iOSShell/iOSShell-Info.plist | 2 | ||||
-rw-r--r-- | gyp/iOSShell.gyp | 1 | ||||
-rwxr-xr-x | platform_tools/ios/bin/ios_setup.sh | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/experimental/iOSShell/iOSShell-Info.plist b/experimental/iOSShell/iOSShell-Info.plist index 7f1a827655..69b62efd1c 100644 --- a/experimental/iOSShell/iOSShell-Info.plist +++ b/experimental/iOSShell/iOSShell-Info.plist @@ -11,7 +11,7 @@ <key>CFBundleIconFile</key> <string></string> <key>CFBundleIdentifier</key> - <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> + <string>com.google.iOSShell</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> diff --git a/gyp/iOSShell.gyp b/gyp/iOSShell.gyp index 2ec50dbf39..3f3acdc103 100644 --- a/gyp/iOSShell.gyp +++ b/gyp/iOSShell.gyp @@ -68,7 +68,6 @@ '../src/views/mac', ], 'xcode_settings' : { - 'PRODUCT_BUNDLE_IDENTIFIER' : '<!(echo com.google.iOSShell.`hostname | md5`)', 'INFOPLIST_FILE' : '../experimental/iOSShell/iOSShell-Info.plist', }, 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base.xcconfig', diff --git a/platform_tools/ios/bin/ios_setup.sh b/platform_tools/ios/bin/ios_setup.sh index a991c53c31..0a56d9152b 100755 --- a/platform_tools/ios/bin/ios_setup.sh +++ b/platform_tools/ios/bin/ios_setup.sh @@ -27,7 +27,7 @@ PROVISIONING_PROFILE="" # Code Signing identity - this needs to be set up on the local machine. CODE_SIGN_IDENTITY="iPhone Developer" -IOS_BUNDLE_ID="com.google.iOSShell.`hostname | md5`" +IOS_BUNDLE_ID="com.google.iOSShell" IOS_RESULTS_DIR="results" |