-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
26 lines (25 loc) · 772 Bytes
/
app.config.js
File metadata and controls
26 lines (25 loc) · 772 Bytes
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
import 'dotenv/config';
module.exports = ({config}) => {
return {
...config,
android: {
versionCode:1,
allowBackup: false,
package: "com.escapees.fuelapp",
config: {
googleMaps: {
apiKey: process.env && process.env.googleMapApiKey ? process.env.googleMapApiKey : 'none'
},
},
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#FFFFFF"
}
},
extra:{
token_endpoint:'https://auth.mdshosted.com/auth/realms/mds/protocol/openid-connect/token',
storeKey: 'eskp_pv_data',
stations_data_endpoint:'https://cportal.mdshosted.com/api/1.0/mobile/getAllStationLocations'
}
}
}