stage 1: project init
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
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/splash.png",
|
||||
resizeMode: "contain",
|
||||
backgroundColor: "#000000",
|
||||
},
|
||||
ios: {
|
||||
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,
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
[
|
||||
"expo-build-properties",
|
||||
{
|
||||
ios: {
|
||||
deploymentTarget: "16.0",
|
||||
},
|
||||
},
|
||||
],
|
||||
"expo-secure-store",
|
||||
],
|
||||
experiments: {
|
||||
typedRoutes: false,
|
||||
},
|
||||
extra: {
|
||||
appEnv: APP_ENV,
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user