- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
iOS 应用的版本/构建字段包括:
"Version"CFBundleShortVersionString(字符串 - iOS、OS X)指定包的发布版本号,它标识应用程序的发布迭代。发布版本号是由三个以句点分隔的整数组成的字符串。
"Build"CFBundleVersion(字符串 - iOS、OS X)指定 bundle 的构建版本号,它标识 bundle 的迭代(已发布或未发布)。构建版本号应该是一个字符串,由三个非负的、以句点分隔的整数组成,第一个整数大于零。该字符串应仅包含数字 (0-9) 和句点 (.) 字符。每个整数的前导零被截断并被忽略(即 1.02.3 等同于 1.2.3)。此 key 不可本地化。
“iTunes Connect 版本号”:您在 iTunes Connect 上创建应用程序的新版本时指定的版本号。
我的问题是:
当应用的新版本上传到 iTunes Connect 和/或发布到 App Store 时,哪些版本/内部版本号需要递增?
可以是“版本”CFBundleShortVersionString
或“构建”CFBundleVersion
在应用程序更新之间保持不变?
Apple 来源的加分或 iTunesConnect 在上传无效版本/内部版本号时显示的确切错误消息。
引发此问题的讨论是,Google Play 商店中 Android 应用的公开“版本”不需要需要递增,并且无法验证. android:versionName
可以在版本、升级、降级之间保持不变,或者是任何随机字符串,而不是看似有效的“版本号”。
android:versionName
— A string value that represents the release version of the application code, as it should be shown to users.The value is a string so that you can describe the application version as a
<major>.<minor>.<point>
string, or as any other type of absolute or relative version identifier.
Difference between versionName and versionNumber in Android
而 android:versionCode
强制为发布时递增的整数。
如 the newly accepted answer 中所述,Apple 最近发布了一份技术说明,详细说明了他们的版本和内部版本号方案:
Apple Technical Note TN2420 - Version Numbers and Build Numbers
最佳答案
Apple Technical Note TN2420, Version Numbers and Build Numbers
Version
, Build number
) 必须是唯一的。
Version
(CFBundleShortVersionString) 必须按升序排列。Build number
(CFBundleVersion) 必须按升序排列。 Version Number and Build Number Checklist
Here are some things you can check when submitting a new build to the App Store. Making sure you have your Version Number and Build Number set properly will help you by avoiding having your App automatically rejected for having them improperly configured.
- For each new version of your App, you need to invent a new Version Number. This number should be a greater value than the last Version Number that you used. Though you may provide many builds for any particular release of your App, you only need to use one new Version Number for each new release of your App.
- You cannot re-use Version Numbers.
- For every new build you submit, you will need to invent a new Build Number whose value is greater than the last Build Number you used (for that same version).
- You can re-use Build Numbers in different release trains, but you cannot re-use Build Numbers within the same release train. For macOS apps, you cannot re-use build numbers in any release train.
根据 list ,以下(Version, Build Number)
序列也是有效的。
案例:在不同的发布序列中重复使用 Build Number
。 (注意:不是 macOS 应用)
(1.0.0, 1) -> (1.0.0, 2) -> ... -> (1.0.0, 11)-> (1.0.1, 1) -> (1.0.1, 2)
关于ios - App Store 发布时必须增加哪个 iOS 应用程序版本/内部版本号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21125159/
如果我调用一个应用程序两次或多次,但只有一个实例应该运行(这是所需的),我就会遇到一个问题。 首先一些(可能必要的)背景信息: 使用 MAC OS X El Capitan (10.11.6) 我有一
覆盖文件。覆盖 Apps 脚本文件。 这是不是 创建一个新的 Apps 脚本文件的问题。那对我没有帮助。我需要更新 现有的 Apps 脚本文件。这个问题类似于创建一个新文件,但不是同一个问题。更新的语
我是 Apps 脚本的新手,正在尝试了解使用另一个帐户在一个帐户中运行/触发脚本的基础知识。需要注意的是:我想在访问脚本的用户而不是拥有脚本的用户的情况下运行脚本——以便将运行时间分配给访问的用户。
我是 Apps 脚本的新手,正在尝试了解使用另一个帐户在一个帐户中运行/触发脚本的基础知识。需要注意的是:我想在访问脚本的用户而不是拥有脚本的用户的情况下运行脚本——以便将运行时间分配给访问的用户。
我有一个安卓应用程序。我想为我的应用程序实现 App Indexing。 我已经点击了 Google 开发者链接 https://developers.google.com/app-indexing/
有什么区别: import App from '../components/App'; 和 var App = require('../components/App'); 两者都用于获取组件,但它没有
问题: 我有一个使用 requireJS 的简单演示应用程序。当require.min.js脚本加载时,它尝试加载入口点脚本。但是,问题是,而不是 localhost:8090/js/app.js它尝
我正在构建一个 React Native 应用程序,目前正在尝试通过 Firebase Auth 实现一个身份验证注册系统。我已经按照指南/网站上的文档来设置 Firebase 配置文件。我运行该应用
因此 app.yaml 文件的一部分如下所示(至少在 GAE 教程中): handlers: - url: /.* script: main.app 但是,我也看到它看起来像这样: handler
我是Android App开发的新手。当我尝试创建一个新项目Android Project时,弹出以下消息: Information:Gradle tasks [:app:generateDebugS
我正在编写一个应用程序脚本(用于处理电子邮件、任务和日历事件)并希望将其部署为网络应用程序。 该应用程序将在运行它的用户的上下文中运行。该应用程序将被超过 10k+ 的用户使用,甚至可能更多。 在将其
我需要实现一个用于登录网站的 Google Apps 脚本应用,然后如果该网站上的身份验证过程成功,用户应该会在 google 脚本边栏中收到一条消息。 例如:用户输入他的邮箱和密码,然后他点击登录按
我正在开发一个跨平台应用程序,它将在 Google Play 商店和 App Store 上发布。 Google Play 政策以及 App Store 政策规定,您不能使用其他支付系统购买将在应用程
我的 AppEngine 应用程序在我的台式机上的开发服务器上运行良好,但我无法在 Google 服务器上获取版本以关注我的源代码更新。 这是最有说服力的例证。我的 app.yaml 文件开始于: a
我像这样将所有内容重定向到我的 app.yaml 中的单个文件 - url: /.* script: frontcontroller.application 但我仍然必须使用 robots.txt
我想构建一个基于 App Engine 的网络应用程序,并使用 Google 帐户对用户进行身份验证。我需要来自多个域的用户可以登录。从我读到的内容看来,仅使用 Google Accounts API
我无法将我的域指向我使用 Google App Engine 托管的网站。这是背景……注意区分“google apps”(域托管、电子邮件等)和“google app engine”(网站框架)的概念
是否可以通过 App Engine 上内置的 OpenId 实现单点登录?我一直在尝试集成一个 Marketplace 应用程序,并让用户在来自 Google Apps(管理面板或通用导航)时登录。我
有没有办法从 azure-cli 为 Web 应用或函数应用创建和/或激活 App Insights? 现在浏览文档。 最佳答案 我之前也考虑过你的问题。要创建应用程序洞察力,az resource
我在以 Angular 创建新项目时遇到问题。当我运行 ng new myapp 命令时,我得到以下命令 ng 新问候语 Error: Path "/app/app.module.ts" does n
我是一名优秀的程序员,十分优秀!