2026-06-15 18:43:43 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2026-06-16 01:03:07 -05:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2026-06-17 23:59:46 -05:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2026-06-24 16:34:53 -05:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2026-06-15 18:43:43 -05:00
|
|
|
|
2026-06-18 01:05:04 -05:00
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
2026-06-24 16:34:53 -05:00
|
|
|
<uses-feature android:name="android.hardware.microphone" android:required="false" />
|
2026-06-18 01:05:04 -05:00
|
|
|
|
2026-06-15 18:43:43 -05:00
|
|
|
<application
|
2026-06-16 20:03:58 -05:00
|
|
|
android:name=".CloserApp"
|
2026-06-16 21:58:17 -05:00
|
|
|
android:allowBackup="false"
|
2026-06-15 18:43:43 -05:00
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
2026-06-29 11:02:31 -05:00
|
|
|
android:enableOnBackInvokedCallback="true"
|
2026-06-15 18:43:43 -05:00
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
feat(ui): navigation refactor, screen wiring, local answer persistence
- Refactored AppNavigation with route-based screen graph
- Wired all screens (auth, onboarding, pairing, home, wheel, questions, settings)
- Added local answer repository (SharedPreferences-based)
- Added HomeViewModel, AnswerHistoryViewModel, AnswerRevealViewModel
- Added question category browsing, pack library, composer screens
- Cleaned up DailyQuestionScreen/QuestionThreadScreen to use shared components
- Projected route docs, account/settings screens, new drawable resources
2026-06-15 23:48:55 -05:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2026-06-15 18:43:43 -05:00
|
|
|
android:label="@string/app_name"
|
feat(ui): navigation refactor, screen wiring, local answer persistence
- Refactored AppNavigation with route-based screen graph
- Wired all screens (auth, onboarding, pairing, home, wheel, questions, settings)
- Added local answer repository (SharedPreferences-based)
- Added HomeViewModel, AnswerHistoryViewModel, AnswerRevealViewModel
- Added question category browsing, pack library, composer screens
- Cleaned up DailyQuestionScreen/QuestionThreadScreen to use shared components
- Projected route docs, account/settings screens, new drawable resources
2026-06-15 23:48:55 -05:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2026-06-16 20:03:58 -05:00
|
|
|
android:theme="@style/Theme.Closer"
|
2026-06-16 20:16:47 -05:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2026-06-15 18:43:43 -05:00
|
|
|
android:supportsRtl="true">
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:exported="true"
|
2026-06-26 12:41:17 -05:00
|
|
|
android:launchMode="singleTop"
|
2026-06-28 20:59:44 -05:00
|
|
|
android:screenOrientation="portrait"
|
2026-06-15 18:43:43 -05:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
2026-06-25 15:24:46 -05:00
|
|
|
android:theme="@style/Theme.Closer.Splash">
|
2026-06-15 18:43:43 -05:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
feat: security hardening, CI, analytics, invite deep links, solo mode, weekly recap
Roadmap phases 0-3.1 (see plan). Verified: unit tests, functions tests,
firestore rules 119/119, live emulator smokes.
Security + CI:
- Move App Check debug token out of committed build.gradle.kts to
local.properties (secret() resolver: local.properties -> -P -> env);
admin service-account key relocated outside the repo.
- Add GitHub Actions (android unit/scan/gitleaks, backend functions +
rules emulator via emulators:exec) with a CI google-services.json stub
and a reviewed .gitleaksignore baseline.
- Fix firestore rules tests to the current deployed contract (was 108/118,
now 119/119).
Analytics + consent:
- FirebaseRetentionAnalytics behind a fail-safe composite sink, single-
sourced hashing (AnalyticsHashing), Settings -> Privacy opt-out toggle
gating Firebase + the sink, and the ~11 missing event call sites.
- NoPlaintextInAnalyticsTest guards the content-free rule at build time.
Funnel:
- Invite deep links (https App Link + closer:// fallback), JoinLink parser,
PendingJoinCodeStore, prefilled/already-paired pairing, richer share text.
- Solo pre-pairing: UnpairedLockedCard on Play, SoloAnswerMigrator + consent
dialog moving pre-pairing answers into Couple Lore.
Weekly recap:
- WeeklyRecapScreen driven by the existing generator from local answer data,
Home card rewired, content-free shareable card.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-06 20:33:38 -05:00
|
|
|
|
|
|
|
|
<!-- Invite deep link: verified https App Link (opens the app directly once
|
|
|
|
|
assetlinks.json is hosted; pre-verification it appears in the app chooser). -->
|
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="https" android:host="closer.app" android:pathPrefix="/join/" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<!-- Custom-scheme fallback for contexts that can't launch an App Link. -->
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="closer" android:host="closer.app" android:pathPrefix="/join/" />
|
|
|
|
|
</intent-filter>
|
2026-06-15 18:43:43 -05:00
|
|
|
</activity>
|
|
|
|
|
|
2026-06-16 01:03:07 -05:00
|
|
|
<service
|
|
|
|
|
android:name=".core.notifications.AppMessagingService"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
|
|
|
|
|
2026-06-17 23:59:46 -05:00
|
|
|
<provider
|
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
|
</provider>
|
|
|
|
|
|
2026-06-15 18:43:43 -05:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|