-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
51 lines (49 loc) · 1.09 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
48
49
50
51
import { ConfigContext, ExpoConfig } from "expo/config";
import { name, version } from "./package.json";
export default (_: ConfigContext): ExpoConfig => ({
name: "Jello",
slug: name,
scheme: name,
version,
orientation: "portrait",
userInterfaceStyle: "automatic",
assetBundlePatterns: ["**/*"],
platforms: ["ios"],
ios: {
icon: "./assets/images/icon.png",
supportsTablet: false,
infoPlist: {
UIBackgroundModes: ["audio"],
},
bundleIdentifier: "dev.easton.jello",
config: {
usesNonExemptEncryption: false,
},
splash: {
// image: "./assets/images/splash.png",
// resizeMode: "contain",
backgroundColor: "#FFFFFF",
dark: {
// image: "./assets/images/splash.png",
// resizeMode: "contain",
backgroundColor: "#000000",
},
},
// backgroundColor: "#000000",
},
plugins: [
[
"expo-build-properties",
{
ios: {
newArchEnabled: true,
},
},
],
],
extra: {
eas: {
projectId: "d948484f-3720-473b-ad8d-5efe058b766c",
},
},
});