
# ✅ Licensing, Compliance & App Store Readiness Summary

---

## 1. Commercial Use Compliance

| Component | License | Notes |
|----------|---------|-------|
| Laravel | MIT | ✅ Commercial use permitted |
| Vue.js | MIT | ✅ Commercial use permitted |
| Tailwind CSS | MIT | ✅ Commercial use permitted |
| Capacitor | MIT | ✅ App wrapping allowed |
| Stripe SDK | MIT | ✅ Usage with Stripe permitted |
| Icons (Lucide, Heroicons) | MIT | ✅ Bundled free |
| AI Output | Original Content | ✅ AI prompts ensure original, non-infringing material |
| TTS (Web Speech API) | Native API | ✅ Browser-based, no external service charged |
| PWA Manifest | W3C Standard | ✅ No restriction |

**Conclusion**: All frontend, backend, and AI-generated content is safe for commercial use and deployment. No license violation or royalty risk.

---

## 2. Apple App Store Requirements (Simplified)

- ✅ App ID via Apple Developer account (99 USD/year)
- ✅ Xcode archive & signed with Developer profile
- ✅ Privacy Policy URL included (site.com/privacy)
- ✅ Payment handled outside App Store via Stripe = **Reader App Exemption** applies
- ✅ Screenshots for 5 device sizes
- ✅ Metadata: Title, Subtitle, Keywords, Description

**Deployment flow:**
```bash
npx cap add ios
npx cap open ios
# Archive in Xcode → Distribute via App Store Connect
```

---

## 3. Google Play Store Requirements

- ✅ Google Developer account ($25 one-time)
- ✅ Android App Bundle (.aab) built via Android Studio
- ✅ Privacy & terms link required
- ✅ API level 33+ with `android:exported="true"`
- ✅ Declare ad usage and data collection

**Deployment flow:**
```bash
npx cap add android
npx cap open android
# Build AAB → Upload via Google Play Console
```

---

## 4. Disclaimers and Legal Notices

✔️ Site footer: “Not affiliated with CILS or Università per Stranieri di Siena.”  
✔️ Emails include unsubscribe links, sender identity, CAN-SPAM footer  
✔️ AI-generated questions are marked as simulations  
✔️ All user content is stored securely, GDPR export available

---

## 5. Support for App Store Uploads

All required metadata, splash images, logos, and icons are located in:

- `/public/icons/` – icons for web and mobile
- `/README_MOBILE_APP.md` – step-by-step publishing help
- `/docs/legal_copyright_notice.txt` – for your records

---

## 6. Recommendation: Keep These Files

Retain these 5 documents:
- `README_MOBILE_APP.md`
- `quick_start_summary.txt`
- `admin_control_summary.txt`
- `legal_copyright_notice.txt`
- `preferences_and_voice_system.txt`

They prove your project is licensed, protected, and production-ready.

—
All guidance reviewed and structured in line with Apple Developer [guidelines](https://developer.apple.com/app-store/review/guidelines/) and Google Play [requirements](https://support.google.com/googleplay/android-developer/answer/113469#privacy).

