-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
60 lines (59 loc) · 1.62 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
54
55
56
57
58
59
60
import "dotenv/config";
export default ({ config }) => ({
...config,
expo: {
name: "Polecat",
slug: "Polecat",
version: "1.0.1",
orientation: "portrait",
icon: "./assets/icon.png",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#20b2aa",
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ["**/*"],
ios: {
buildNumber: "5",
supportsTablet: true,
bundleIdentifier: "com.wilddevs.polecat.free",
infoPlist: {
NSLocationAlwaysAndWhenInUseUsageDescription:
"Turning on location services allows Polecat to find animals in your region.",
NSLocationWhenInUseUsageDescription:
"Turning on location services allows Polecat to find animals in your region.",
NSLocationAlwaysUsageDescription:
"Turning on location services allows Polecat to find animals in your region.",
NSLocationUsageDescription:
"Turning on location services allows Polecat to find animals in your region.",
},
},
android: {
versionCode: 5,
androidStatusBar: {
backgroundColor: "#008080",
},
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#20b2aa",
},
package: "com.wilddevs.polecat.free.test",
config: {
googleMaps: {
apiKey: process.env.GOOGLE_MAPS_API_KEY,
},
},
},
web: {
favicon: "./assets/favicon.png",
},
extra: {
eas: {
projectId: "1f23fab5-d23f-4733-976c-830f6cf3e4dc",
},
},
},
});