mobile v0.1 with deployment for ios (#191)
* stage 1: project init * stage 2: skeleton with navigation * step 2.5: streams list * step 4: stream playback experience * step 5-6: compose experience * fix: broken record * transcode media particles to mp4 * build: reproducible go generate * build: rename skaffold module for particle processor worker * infra: increase particle processor worker resources Was dealing with OOM errors * tweaks to mobile * log transcode work * view on desktop placeholder * tweak padding * cap video resolution to save on memory * infra: bump memory limits as insurance * ux improvements * update bundle id for mobile * config for mobile
This commit was merged in pull request #191.
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
import type { ExpoConfig } from "expo/config";
|
||||
|
||||
const APP_ENV = (process.env.EXPO_PUBLIC_APP_ENV ?? "dev") as "dev" | "prod";
|
||||
|
||||
const config: ExpoConfig = {
|
||||
name: "Flowy",
|
||||
slug: "flowy",
|
||||
version: "0.1.0",
|
||||
orientation: "portrait",
|
||||
icon: "./assets/icon.png",
|
||||
scheme: "flowy",
|
||||
userInterfaceStyle: "automatic",
|
||||
newArchEnabled: true,
|
||||
splash: {
|
||||
image: "./assets/icon.png",
|
||||
resizeMode: "contain",
|
||||
backgroundColor: "#000000",
|
||||
},
|
||||
ios: {
|
||||
supportsTablet: true,
|
||||
bundleIdentifier: "ai.flowylabs.llink",
|
||||
infoPlist: {
|
||||
ITSAppUsesNonExemptEncryption: false,
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
[
|
||||
"expo-build-properties",
|
||||
{
|
||||
ios: {
|
||||
deploymentTarget: "16.0",
|
||||
},
|
||||
},
|
||||
],
|
||||
"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.",
|
||||
recordAudioAndroid: true,
|
||||
},
|
||||
],
|
||||
[
|
||||
"expo-audio",
|
||||
{
|
||||
microphonePermission:
|
||||
"Flowy uses your microphone to record voice messages.",
|
||||
},
|
||||
],
|
||||
],
|
||||
experiments: {
|
||||
typedRoutes: false,
|
||||
},
|
||||
extra: {
|
||||
eas: {
|
||||
projectId: "e902f7e5-e514-42bd-9591-75738e3494ed"
|
||||
},
|
||||
|
||||
appEnv: APP_ENV,
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user