-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
99 lines (99 loc) · 2.71 KB
/
Copy pathapp.json
File metadata and controls
99 lines (99 loc) · 2.71 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"expo": {
"name": "GPS-Based Student Attendance App",
"slug": "gps-attendance",
"scheme": "gpsattendance",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#1B5E20"
},
"ios": {
"supportsTablet": false,
"bundleIdentifier": "ke.ac.jkuat.gpsattendance",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "This app needs your location to verify you are inside the classroom when signing attendance.",
"NSFaceIDUsageDescription": "Use Face ID to log in quickly and securely."
}
},
"android": {
"package": "ke.ac.jkuat.gpsattendance",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#1B5E20"
},
"edgeToEdgeEnabled": true,
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"USE_BIOMETRIC",
"USE_FINGERPRINT",
"POST_NOTIFICATIONS",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"USE_BIOMETRIC",
"USE_FINGERPRINT",
"POST_NOTIFICATIONS",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.USE_BIOMETRIC",
"android.permission.USE_FINGERPRINT"
]
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"plugins": [
"expo-router",
"expo-font",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "This app needs your location to verify classroom attendance."
}
],
[
"expo-local-authentication",
{
"faceIDPermission": "Use Face ID to log in securely."
}
],
[
"expo-notifications",
{
"color": "#1B5E20"
}
],
[
"expo-image-picker",
{
"photosPermission": "Allow the app to access your photos so you can set a profile picture."
}
],
"expo-web-browser"
],
"extra": {
"router": {},
"eas": {
"projectId": "0f6a6866-40b7-421b-8e5e-84406520f071"
}
},
"owner": "mzeemzima",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/0f6a6866-40b7-421b-8e5e-84406520f071"
}
}
}