# Play Store Checklist

This checklist is not legal advice. Verify current Google Play, Android, and AI provider policies before release.

## Permissions

- [ ] No `MANAGE_EXTERNAL_STORAGE`.
- [ ] No broad media permissions unless explicitly justified and approved.
- [ ] Photo import uses Android Photo Picker.
- [ ] Camera permission is requested only when needed.
- [ ] No background location.
- [ ] No unnecessary permissions.

## Data Safety

- [ ] Document what data is stored on-device.
- [ ] Document when selected images are sent to an AI provider.
- [ ] Document that API keys are stored on-device.
- [ ] Document that the developer does not run a backend in MVP.
- [ ] Ensure Play Console Data Safety answers match actual implementation.

## Privacy Policy

- [ ] Publish privacy policy URL.
- [ ] Link privacy policy inside app.
- [ ] Explain photo handling.
- [ ] Explain optional AI provider transmission.
- [ ] Explain API key storage.
- [ ] Explain deletion behavior.
- [ ] Provide contact email.

## AI Disclosure

- [ ] The app explains that AI output may be inaccurate.
- [ ] The app says suggestions are editable.
- [x] The app no longer sends images to external AI providers.
- [ ] The app avoids claiming exact object detection or guaranteed counts.

## Open Source Safety

- [ ] No real API keys in repository.
- [ ] No signing keys in repository.
- [ ] No release keystore in repository.
- [ ] `.gitignore` covers local secret files.
- [ ] Sample config files use placeholders only.

## Release Quality

- [ ] App starts without API key.
- [ ] Capture/import works.
- [ ] Save/search/delete works.
- [ ] Local tagging failure is recoverable.
- [ ] AI failure is recoverable.
- [ ] Dark mode checked.
- [ ] Accessibility basics checked.
- [ ] No private data in logs.

## ASO (App Store Optimization)

- [ ] 앱 이름에 핵심 가치 키워드 포함 (예: 사진 메모, 태그 검색)
- [ ] 짧은 설명(80자)에 문제 해결 문장 포함
- [ ] 긴 설명 첫 3줄에 핵심 기능/차별점 배치
- [ ] 주요 검색 키워드(사진 정리, 태그 검색, 비주얼 메모) 자연 포함
- [ ] 스크린샷 1~2장에 핵심 플로우(촬영→태그→검색) 강조
- [ ] 개인정보/로컬 처리 메시지 명확히 표기
- [ ] 릴리즈 노트에 사용자 체감 개선점 중심으로 작성

