facebook twitter hatena line email

Ios/TestFlight

提供: 初心者エンジニアの簡易メモ
2025年8月8日 (金) 15:32時点におけるAdmin (トーク | 投稿記録)による版 (TestFlightにアプリインストール)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

TestFlightインストール

iPhone実機から、appStoreで、TestFlightをインストール

TestFlightにアプリインストール

  1. ttps://appstoreconnect.apple.com/ にアクセス
  2. 指定アプリのTestFlightタブを開く
  3. 内部テストに適当なグループを作り、自分のメアドを招待
  4. xcodeからアプリをビルドしてDistributionする(具体的には下の項目)
  5. 指定アプリのTestFlightタブに、ビルドしたものをセット
  6. TestFlightアプリに表示される

xcodeからtestflightへup

  1. xcodeで、ビルド可能なプロジェクトを作る
  2. xcodeメニュー/Product/Archive
  3. xcodeメニュー/Window/Orgnaizer

xcodeのtestflightへのupで、色々エラー

Validation failed
Missing app icon. Include a large app icon as a 1024 by 1024 pixel PNG for the 'Any Appearance' image well in the asset catalog of apps built for iOS or iPadOS. Without this icon, apps can't be submitted for review. For details, visit: https://developer.apple.com/documentation/xcode/configuring-your-app-icon. 

iconを1024x1024以上にする。

Validation failed
Invalid Version. The build with the version “2.9.1” can’t be imported because a later version has been closed for new build submissions. Choose a different version number. (ID: 4e9f04ee-9a61-416b-811e-64f53edd089e)

バージョンが違うので、修正する。

Validation failed
Invalid Pre-Release Train. The train version '1.0.0' is closed for new build submissions (ID: 785987c1-38ac-4f8f-9df6-9066f2c9a44b)

1.0.0のバージョンは使えないので、バージョンを修正する。

Validation failed
This bundle is invalid. The value for key CFBundleShortVersionString [1.0] in the Info.plist file must contain a higher version than that of the previously approved version [2.68.0]. Please find more information about CFBundleShortVersionString at 

1.0のバージョンは使えないので、2.68.0を超えるバージョンで修正する。