-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.js
45 lines (44 loc) · 1.06 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
import 'dotenv/config'
export default {
name: 'Jornada Solar',
slug: 'jornadasolar',
icon: './assets/icon.png',
owner: 'tesseract',
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#000000'
},
web: {
config: {
firebase: {
measurementId:
process.env.EAS_BUILD_PROFILE === 'production'
? process.env.MEASUREMENT_ID
: process.env.DEV_MEASUREMENT_ID
}
}
},
android: {
icon: './assets/icon.png',
versionCode: 3,
package: 'com.grupotesseract.jornadasolar',
googleServicesFile: './google-services.json',
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#000000'
}
},
ios: {
icon: './assets/icon.png',
buildNumber: '2.0.0',
bundleIdentifier: 'com.grupotesseract.jornadasolar',
googleServicesFile: './GoogleService-Info.plist'
},
scheme: 'jornadasolar',
notification: {
icon: './assets/notification-icon.png',
color: '#F7C92A',
iosDisplayInForeground: true
}
}