10
9

More than 5 years have passed since last update.

Xcodeでビルド番号に日付をくっつける方法

Posted at

ビルド番号が欲しくなしました。

参考URL:Xcode 4でビルド番号を自動的に増やす方法

インクリメントではなく日付にしたかったのでとCFBundleShortVersionStringの後ろに日付を付けたかったので、スクリプトを修正

builShortdNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" "$INFOPLIST_FILE")
datetime=$(date +%Y%m%d%H%M)
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $builShortdNumber.$datetime" "$INFOPLIST_FILE"
10
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
9