-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
33 lines (33 loc) · 838 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
{
"expo": {
"name": "cpuSchedulingApp",
"slug": "CPU-Scheduling-App-Operating-System",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/favicon_main.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#50c0d8"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"*/"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.vivek.cpuschedulingapp",
"buildNumber": "1.0.0"
},
"web": {
"favicon": "./assets/favicon.png"
},
"description": "React Native Application to visualize the CPU Scheduling with different Processes and Animations.",
"android": {
"package": "com.vivek.cpuschedulingapp",
"versionCode": 1
}
}
}