You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// device builds require an additional token to ensure uniqueness so that iTunes will detect an updated app to sync.
1824
+
// we drop the milliseconds from the current time so that we still have a unique identifier, but is less than 10
1825
+
// characters so iTunes 11.2 doesn't get upset.
1826
+
plist.CFBundleVersion=String(+newDate);
1827
+
this.logger.debug(__('Building for iTunes sync which requires us to set the CFBundleVersion to a unique number to trigger iTunes to update your app'));
1828
+
this.logger.debug(__('Setting Info.plist CFBundleVersion to current epoch time %s',plist.CFBundleVersion.cyan));
1825
1829
}else{
1826
-
plist.CFBundleVersion=this.tiapp.version;
1830
+
plist.CFBundleVersion=String(this.tiapp.version);
1831
+
this.logger.debug(__('Setting Info.plist CFBundleVersion to %s',plist.CFBundleVersion.cyan));
0 commit comments