summaryrefslogtreecommitdiff
path: root/xmake/rules/xcode/info_plist
diff options
context:
space:
mode:
authorruki <[email protected]>2020-11-14 00:32:35 +0800
committerruki <[email protected]>2020-11-14 00:32:35 +0800
commit6fa502e50701669acd7af26797ce1beade3207e2 (patch)
treeec52d2c2e91cb461b95f59b44644afdb67750506 /xmake/rules/xcode/info_plist
parentf98e16155b53e199b40c8d8fe9c0d7c4ffc4659c (diff)
run iosapp on simulator
Diffstat (limited to 'xmake/rules/xcode/info_plist')
-rw-r--r--xmake/rules/xcode/info_plist/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/xcode/info_plist/xmake.lua b/xmake/rules/xcode/info_plist/xmake.lua
index e6f7c82c0..5b36277d4 100644
--- a/xmake/rules/xcode/info_plist/xmake.lua
+++ b/xmake/rules/xcode/info_plist/xmake.lua
@@ -56,7 +56,7 @@ rule("xcode.info_plist")
{
DEVELOPMENT_LANGUAGE = "en",
EXECUTABLE_NAME = target:basename(),
- PRODUCT_BUNDLE_IDENTIFIER = target:values("xcode.bundle_identifier") or get_config("xcode_bundle_identifier") or "org.tboox." .. target:name(),
+ PRODUCT_BUNDLE_IDENTIFIER = target:values("xcode.bundle_identifier") or get_config("xcode_bundle_identifier") or "io.xmake." .. target:name(),
PRODUCT_NAME = target:name(),
PRODUCT_DISPLAY_NAME = target:name(),
CURRENT_PROJECT_VERSION = target:version() and tostring(target:version()) or "1.0",