mobile v0.1 with deployment for ios #191

Merged
talksik merged 19 commits from mobile-v1 into master 2026-04-30 00:39:11 +00:00
Showing only changes of commit 45d661d955 - Show all commits
@@ -24,7 +24,7 @@ const TICK_MS = 150;
* WebM, which AVPlayer can't decode; the particle processor worker produces
* an iOS-playable MP4/m4a variant and writes `transcoded_object_id` /
* `transcoded_mime_type` to the particle. While that work is in flight, we
* show a "Processing for mobile…" placeholder and let the Firestore listener
* show a placeholder and let the Firestore listener
* swap us into the playable state once the worker finishes.
*
* The signed download URL is fetched lazily via apiClient.getParticleDownloadUrl
@@ -242,13 +242,12 @@ function ProcessingForMobilePlaceholder({ isAudio }: { isAudio: boolean }) {
{isAudio ? "Voice message" : "Video message"}
</Text>
<View className="flex-row items-center mt-3">
<ActivityIndicator color="white" />
<Text className="text-white/60 ml-3 text-sm">
Processing for mobile
View on desktop
</Text>
</View>
<Text className="text-white/40 mt-2 text-xs text-center">
This message will play in a moment.
Please view this on desktop only.
</Text>
</View>
);