-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
53 lines (51 loc) · 1.5 KB
/
app.config.js
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
export default () => ({
expo: {
name: "Greenclick",
slug: "greenclick",
version: "1.0.47",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
updates: {
fallbackToCacheTimeout: 0,
url: "https://u.expo.dev/ba4ba5d3-f0ba-4205-8be9-9f9fa9aa6854"
},
assetBundlePatterns: [
"**/*"
],
ios: {
supportsTablet: false,
bundleIdentifier: "org.name.greenclick",
buildNumber: "64",
infoPlist: {
NSLocationWhenInUseUsageDescription: "This app uses your location to retrieve nearby hotels & unlock the greenclick lock box when you are in clock proximity.",
NSLocationAlwaysUsageDescription: "This app requires your location to verify if you are in close proximity of the greenclick lock box.",
NSCameraUsageDescription: "This app requires your camera accesss to confirm your rental period to be damage & liability free."
}
},
android: {
package: "org.name.greenclick",
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#FFFFFF"
}
},
web: {
favicon: "./assets/favicon.png"
},
GOOGLE_API_KEY: process.env.GOOGLE_API_KEY || null,
extra: {
eas: {
projectId: "ba4ba5d3-f0ba-4205-8be9-9f9fa9aa6854"
}
},
runtimeVersion: {
policy: "sdkVersion"
}
}
})