-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
63 lines (63 loc) · 1.68 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
{
"expo": {
"name": "Job Fair Company",
"description": "Job Fair app for companies",
"slug": "job-fair-company",
"privacy": "public",
"sdkVersion": "23.0.0",
"version": "2.0.0",
"orientation": "portrait",
"primaryColor": "#000022",
"icon": "./assets/JobFair-square-icon.png",
"androidStatusBarColor": "#191938",
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#191938"
},
"packagerOpts": {
"assetExts": [
"ttf",
"mp4"
]
},
"android": {
"package": "org.kset.jobfairCompany",
"permissions": ["CAMERA"],
"versionCode": 11,
"splash": {
"backgroundColor": "#000022",
"resizeMode": "cover",
"ldpi": "./assets/splash.hdpi.png",
"mdpi": "./assets/splash.hdpi.png",
"hdpi": "./assets/splash.hdpi.png",
"xhdpi": "./assets/splash.xhdpi.png",
"xxhdpi": "./assets/splash.xxhdpi.png",
"xxxhdpi": "./assets/splash.xxxhdpi.png"
}
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "org.kset.jobfairCompany",
"splash": {
"backgroundColor": "#000022",
"resizeMode": "cover",
"image": "./assets/splash.ios.png"
},
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to scan QR codes on event tickets."
},
"icon": "./assets/JobFair-square-icon-ios.png"
},
"hooks": {
"postPublish": [
{
"file": "@mpetrunic/sentry-expo/upload-sourcemaps",
"config": {
"organization": "ss-fer",
"project": "job-fair-company"
}
}
]
}
}
}