-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
34 lines (34 loc) · 891 Bytes
/
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
{
"expo": {
"name": "my magic lives",
"description": "For every MTG lover! With this app, you will be able to focus on your strategy and not on how many life points you have left!",
"slug": "my-magic-lives",
"privacy": "public",
"sdkVersion": "25.0.0",
"platforms": ["ios"],
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#512902"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.fbdev.my-magic-lives"
},
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "fbdev",
"project": "my-life",
"authToken": "YOUR_OWN_KEY"
}
}
]
}
}
}