在 iTunes 中创建新的 iOS 应用程序版本与 Fastlane 连接
Create new iOS app version in iTunes connect with Fastlane
有没有办法使用 fastlane 为 iTunes Connect 中已有的应用程序创建新的 iOS 应用程序版本?
我尝试使用以下 produce
命令:
produce create -a "com.somebundleidentifier" -q "My App Name" -u test@example.com -b XXXXXX -d -z 6.2.4
但我回来了:
[iTC] App 'com.somebundleidentifier' already exists (983959158), nothing to do on iTunes Connect
上传 ipa
时使用 deliver
即可。
deliver --ipa "$ipa" -z 6.2.4 -u test@example.com
有没有办法使用 fastlane 为 iTunes Connect 中已有的应用程序创建新的 iOS 应用程序版本?
我尝试使用以下 produce
命令:
produce create -a "com.somebundleidentifier" -q "My App Name" -u test@example.com -b XXXXXX -d -z 6.2.4
但我回来了:
[iTC] App 'com.somebundleidentifier' already exists (983959158), nothing to do on iTunes Connect
上传 ipa
时使用 deliver
即可。
deliver --ipa "$ipa" -z 6.2.4 -u test@example.com