-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
66 lines (63 loc) · 1.61 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
61
62
63
64
65
66
import "dotenv/config";
export default {
expo: {
name: "GeoNotify",
slug: "GeoNotify",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#f3f3f3",
},
assetBundlePatterns: ["**/*"],
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#f3f3f3",
},
package: "com.geonotify.itsmefrost",
googleServicesFile: process.env.GOOGLE_SERVICES_JSON,
config: {
googleMaps: {
apiKey: process.env.GOOGLE_MAPS_API_KEY,
},
},
},
web: {
favicon: "./assets/favicon.png",
},
extra: {
firebaseApiKey: process.env.FIREBASE_API_KEY,
firebaseAuthDomain: process.env.FIREBASE_AUTH_DOMAIN,
firebaseProjectId: process.env.FIREBASE_PROJECT_ID,
firebaseStorageBucket: process.env.FIREBASE_STORAGE_BUCKET,
firebaseMessagingSenderId: process.env.FIREBASE_MESSAGING_SENDER_ID,
firebaseAppId: process.env.FIREBASE_APP_ID,
firebaseMeasurementId: process.env.FIREBASE_MEASUREMENT_ID,
eas: {
projectId: "d55231d1-f951-47ae-92ee-c02e3d2caf55",
},
},
plugins: [
[
"expo-location",
{
isAndroidBackgroundLocationEnabled: true,
},
],
[
"expo-notifications",
{
icon: "./assets/geonotify_icon.png",
color: "#008080",
},
],
],
},
};