-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
68 lines (68 loc) · 1.46 KB
/
app.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"expo": {
"name": "Morph AI",
"slug": "MorphAI",
"version": "1.2.0",
"orientation": "portrait",
"icon": "./assets/images/icon2.png",
"scheme": "morph-ai",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.aamir067.morphai"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#000000"
},
"package": "com.aamir067.morphai",
"versionCode": 6
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/icon2.png"
},
"plugins": [
[
"expo-media-library",
{
"photosPermission": "Allow $(PRODUCT_NAME) to access your photos.",
"savePhotosPermission": "Allow $(PRODUCT_NAME) to save photos.",
"isAccessMediaLocationEnabled": true
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
],
"expo-router",
[
"react-native-google-mobile-ads",
{
"androidAppId": "ca-app-pub-3417831874175604~4831466026",
"iosAppId": "ca-app-pub-3417831874175604~6576201657"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "0fcc170a-7008-4e27-aa72-cb4e07cecedc"
}
}
}
}