-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
68 lines (68 loc) · 1.74 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": "CVUHSD Portal Mobile",
"slug": "CVUHSD-Portal-Mobile",
"description": "The CVUHSD Mobile Portal allows for quick access in mobile apparati to 3rd-party CVUHSD staff services, such as school dude. Availale for iOS & Android ",
"version": "3.0.8",
"privacy": "public",
"githubUrl": "https://github.com/JuanDavidLopez95/CVUHSD-Portal-Mobile",
"orientation": "portrait",
"primaryColor": "#B41A1F",
"icon": "./src/assets/app-icon.ios.png",
"splash": {
"image": "./src/assets/splash-screen.png",
"resizeMode": "cover",
"backgroundColor": "#B41A1F"
},
"scheme": "cvuhsd.portal",
"platforms": [
"ios",
"android",
"web"
],
"ios": {
"icon": "./src/assets/app-icon.ios.png",
"supportsTablet": false,
"buildNumber": "25",
"bundleIdentifier": "com.cvuhsd.portal",
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"icon": "./src/assets/app-icon.android.png",
"package": "com.cvuhsd.portalMobile",
"versionCode": 25,
"permissions": [],
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.cvuhsd.portal"
},
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#F4F7F9"
},
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"expo.ts",
"expo.tsx",
"expo.js",
"expo.jsx",
"ts",
"tsx",
"js",
"jsx",
"json",
"wasm",
"svg"
]
}
}
}