使用PlistBuddy获取应用程序版本返回“ CFBundleShortVersionString不存在”

时间:2019-01-23 10:44:33

标签: ios terminal plist

我知道这是一个简单而愚蠢的问题,但是我找不到为什么会出错。我想在获取xcarchive文件后打印项目的应用程序版本。我为此使用PlistBuddy

/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" /build/My_Project.xcarchive/Info.plist 

此代码返回

  

打印:条目“ CFBundleShortVersionString”不存在

但是,我可以成功打印“ ApplicationProperties”或整个plist文件。可能是什么问题?

1 个答案:

答案 0 :(得分:0)

CFBundleShortVersionString属性存储在ApplicationProperties字典中,PlistBuddy帮助说:

Entries consist of property key names delimited by colons.  Array items
are specified by a zero-based integer index.  Examples:
    :CFBundleShortVersionString
    :CFBundleDocumentTypes:2:CFBundleTypeExtensions

因此,为了获得此值,您需要运行以下命令:

/usr/libexec/PlistBuddy -c "Print ApplicationProperties:CFBundleShortVersionString" /build/My_Project.xcarchive/Info.plist