Files
eryao/apps
qzl 913ed26f8d feat(privacy): add personalized ads toggle in settings
- Add PrivacySettings schema with can_sell field (default: false)
- Move privacy toggle to GeneralSettingsScreen with clear labeling
- Update l10n for zh/en/zh_hant with user-friendly copy
- Clean up redundant PrivacyNotificationSettingsScreen
- Update profile-protocol.md to reflect new privacy schema
- Fix basedpyright warnings in user.py
2026-04-17 13:11:09 +08:00
..

eryao apps

Flutter client for 觅爻签问.

Debug startup with backend injection

This app supports injecting backend URL at startup (same pattern as social-app):

  • Dart read path: lib/core/config/env.dart
  • Injection key: BACKEND_URL

Direct command

flutter run --dart-define=BACKEND_URL=http://192.168.1.100:5775

Script command

./tool/run-dev.sh --backend-url http://192.168.1.100:5775

If BACKEND_URL is not provided, fallback is:

  • Android emulator: http://10.0.2.2:5775
  • Others: http://localhost:5775