-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.js
40 lines (40 loc) · 1.41 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
module.exports = {
"expo": {
"name": "Bibliobooks",
"slug": "bibliobooks",
"description": "Bibliobooks is mobile application for writing, reading and sharing webnovels",
"githubUrl": "https://github.com/bsrodrigue/stalnov-native",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/icons/android/res/mipmap-xxxhdpi/ic_launcher.png",
"userInterfaceStyle": "light",
"splash": {
"backgroundColor": "#22A39F"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/icons/android/res/mipmap-xxxhdpi/ic_launcher.png",
"backgroundColor": "#ffffff"
},
"package": "bf.bsrodrigue.bibliobooks"
},
"extra": {
"eas": {
"projectId": "e5e15686-405f-4ad5-bda8-ad23272610e9"
},
"API_URL": process.env['EXPO_PUBLIC_API_URL'],
"FIREBASE_API_KEY": process.env['EXPO_PUBLIC_FIREBASE_API_KEY'],
"FIREBASE_AUTH_DOMAIN": process.env['EXPO_PUBLIC_FIREBASE_AUTH_DOMAIN'],
"FIREBASE_PROJECT_ID": process.env['EXPO_PUBLIC_FIREBASE_PROJECT_ID'],
"FIREBASE_STORAGE_BUCKET": process.env['EXPO_PUBLIC_FIREBASE_STORAGE_BUCKET'],
"FIREBASE_MESSAGING_SENDER_ID": process.env['EXPO_PUBLIC_FIREBASE_MESSAGING_SENDER_ID'],
"FIREBASE_APP_ID": process.env['EXPO_PUBLIC_FIREBASE_APP_ID']
}
}
}