Skip to content

Commit

Permalink
iOS: Fixing Apple update fail because bundle ID mismatch (fixes #199)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shchvova committed Dec 2, 2020
1 parent 742d5ee commit d831598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/resources/CoronaPListSupport.lua
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function CoronaPListSupport.modifyPlist( options )
-- Apple treats this the build number so, if it hasn't been specified in the build.settings, we
-- set it to the current date and time which is unique for the app and human readable
bundleVersionSource = (infoPlist.CFBundleVersion == "@BUNDLE_VERSION@") and "set by Simulator" or "set by Info.plist"
infoPlist.CFBundleVersion = os.date("%Y.%m.%d%H%M")
infoPlist.CFBundleVersion = os.date("%Y.%m.7%d%H%M")
end

local version = options.bundleversion or "1.0.0"
Expand Down

0 comments on commit d831598

Please sign in to comment.