-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
47 lines (45 loc) · 1.19 KB
/
app.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { ConfigContext, ExpoConfig } from "expo/config";
import { name, version } from "./package.json";
export default (_: ConfigContext): ExpoConfig => ({
assetBundlePatterns: ["**/*"],
experiments: {
reactCompiler: true,
typedRoutes: true,
},
extra: {
eas: {
projectId: "d948484f-3720-473b-ad8d-5efe058b766c",
},
},
ios: {
bundleIdentifier: "dev.easton.jello",
config: {
usesNonExemptEncryption: false,
},
icon: "./assets/images/icon.png",
infoPlist: {
UIBackgroundModes: ["audio"],
},
splash: {
// resizeMode: "contain",
backgroundColor: "#FFFFFF",
dark: {
// resizeMode: "contain",
backgroundColor: "#000000",
image: "./assets/images/splash.png",
},
image: "./assets/images/splash.png",
},
supportsTablet: false,
// backgroundColor: "#000000",
},
name: "Jello",
newArchEnabled: false, // https://github.com/doublesymmetry/react-native-track-player/pull/2395
orientation: "portrait",
platforms: ["ios"],
plugins: ["expo-secure-store", "expo-router", "expo-build-properties"],
scheme: name,
slug: name,
userInterfaceStyle: "automatic",
version,
});