ipa
来自于:开发者立即使用
getBundleID getBundleVersion getAppInfo
获取ipa(苹果APP)相关信息(bundleID、bundleVersion等)。
getBundleID
获取BundleID。
getBundleID()
示例代码
var ipa = api.require('ipa');
alert(ipa.getBundleID());
可用性
iOS系统
getBundleVersion
获取BundleVersion。(就是APICloud云编译时IOS version code里面填的值。测试版因为不用填,默认是正式版上一次打包保留下的值,正式版打包就正对应你当时填的值。)
getBundleVersion()
示例代码
var ipa = api.require('ipa');
alert(ipa.getBundleVersion());
可用性
iOS系统
getAppInfo
获取app的完整信息。
getAppInfo()
示例代码
var ipa = api.require('ipa');
alert(JSON.stringify(ipa.getAppInfo()));
可用性
iOS系统