0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

eas build を行うときに求められるApple IDを間違って記入した時の対処

Posted at

はじめに

eas build --platform ios

を行った際に、以下のようにApple IDが求められます。

Do you want to log in to your Apple account? … yes

› Log in to your Apple Developer account to continue

 Apple ID: …

この際に一度誤ったIDを登録してしまうと、そのIDが記憶されてしまい、次の入力時にも強制的にそのIDが入力された状態になってしまいます。

異なるIDを入力したい場合には、それをリセットする必要があるのですが、解決に手こずったので解決法を共有します。

解決法

こちらを参考に解決することができました。

具体的には、.app-store/auth/username.jsonというファイルを削除する必要があります。

保存先は上記で紹介したissueと、私の保存先が異なっていたので、人によって違うのかも知れません。

私の場合は以下のコマンドを実行して、ファイルの場所を見つけました。

find .app-store 

そして見つけた username.json

rm username.json

でも行って削除してください。

その後に、eas buildを再度行うと、Apple IDの入力を求められているようになっています。

終わりに

急に入力できなくなって困っていたのですが、ちょうどいいissueが見つかって良かったです。
参考になると幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?