App Store Connect の App Review 連絡先 (氏名・メール・電話) を設定する
- Dominant language
- Swift
- Stars
- 0
- Forks
- 0
- Avg merge
- 1d 1h
- Merged PRs (30d)
- 24
Description
## 概要
App Store Connect の App Review 連絡先 (氏名・メールアドレス・電話番号) が未設定。審査提出時に必須の項目で、個人情報のためリポジトリ (`fastlane/asc_submission_settings.json`) には置かず、環境変数で `scripts/asc_apply_submission_settings.sh` に渡す設計にしている (#47 / PR #57)。
## やること
1. 連絡先を環境変数で用意する (電話番号は E.164 形式。例: `+81XXXXXXXXXX`)
```sh
export ASC_REVIEW_CONTACT_FIRST_NAME=<名>
export ASC_REVIEW_CONTACT_LAST_NAME=<姓>
export ASC_REVIEW_CONTACT_EMAIL=<連絡先メール>
export ASC_REVIEW_CONTACT_PHONE=
```
2. リポジトリルートで `bash scripts/asc_apply_submission_settings.sh` を実行する (現状 GET → 差分があれば適用 → 再 GET で検証。他の項目は定義どおりなら書き込まない)。ログには連絡先をマスクして出す
3. 実行結果の `[OK] iOS 1.0.0 App Review メモ` を確認する。ASC の Web UI (https://appstoreconnect.apple.com/apps/6806111672/distribution) で App Review に関する情報の連絡先が入っていることを目視する
連絡先の値をリポジトリ・issue・PR に書かない (`~/.claude/rules/no-personal-info-in-repositories.md`)。
## 完了条件
- App Store Connect の iOS 1.0.0 の App Review 情報に連絡先 (氏名・メール・電話) が設定されている
- `scripts/asc_apply_submission_settings.sh` の再実行で連絡先を含め全項目「定義どおり」exit 0
## 依存
- #47 (アプリ登録と提出前設定。PR #57) のマージ後に実施する
## セッション再開
```sh
cd /Users/bannzai/worktrees/bannzai/igen/issue-47-48
claude --resume c480ddd3-902a-4c5d-aa3b-bc78bde71c4b
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Read scripts/asc_apply_submission_settings.sh and the submission settings described in fastlane/asc_submission_settings.json. After PR #57 is merged, run the script from the repository root with the four ASC_REVIEW_CONTACT_* variables, keeping personal values out of repository files, issues, and pull requests. Done means the masked log reports the App Review contact as defined and a rerun exits 0 after verification in App Store Connect.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- bash, ios
- Domain
- mobile, release
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Active
- Clarity
- Clearly specified
- Newbie friendliness
- 58/100