forked from oss-slu/lrda_mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
54 lines (53 loc) · 1.19 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
import 'dotenv/config';
export default {
expo: {
name: "Where's Religion?",
slug: "lrda_mobile",
version: "1.0.6",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
splash: {
image: "./assets/splash.png",
resizeMode: "cover",
backgroundColor: "#ffffff"
},
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: true,
bundleIdentifier: "register.edu.slu.cs.oss.lrda",
config: {
googleMapsApiKey: process.env.API_KEY
},
buildNumber: "12"
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff"
},
config: {
googleMaps: {
apiKey: process.env.API_KEY
}
},
package: "register.edu.slu.cs.oss.lrda",
versionCode: 1
},
web: {
favicon: "./assets/favicon.png"
},
runtimeVersion: {
policy: "sdkVersion"
},
updates: {
url: "https://u.expo.dev/801029ef-db83-4668-a97a-5adcc4c333e2"
},
extra: {
apiKey: process.env.API_KEY
},
plugins: [
["react-native-auth0", { domain: "cubap.auth0.com" }]
]
}
};