step 5-6: compose experience

This commit is contained in:
talksik
2026-04-29 13:29:02 -07:00
parent ddfcf1ee12
commit a974fa50b0
46 changed files with 3305 additions and 75 deletions
+17 -5
View File
@@ -12,7 +12,7 @@ const config: ExpoConfig = {
userInterfaceStyle: "automatic",
newArchEnabled: true,
splash: {
image: "./assets/splash.png",
image: "./assets/icon.png",
resizeMode: "contain",
backgroundColor: "#000000",
},
@@ -20,10 +20,6 @@ const config: ExpoConfig = {
supportsTablet: true,
bundleIdentifier: "com.llink.flowy",
infoPlist: {
NSCameraUsageDescription:
"Flowy uses your camera to record video messages.",
NSMicrophoneUsageDescription:
"Flowy uses your microphone to record voice and video messages.",
ITSAppUsesNonExemptEncryption: false,
},
},
@@ -37,6 +33,22 @@ const config: ExpoConfig = {
},
],
"expo-secure-store",
[
"expo-camera",
{
cameraPermission:
"Flowy uses your camera to record video messages.",
microphonePermission:
"Flowy uses your microphone to record voice and video messages.",
},
],
[
"expo-audio",
{
microphonePermission:
"Flowy uses your microphone to record voice messages.",
},
],
],
experiments: {
typedRoutes: false,