-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.js
50 lines (49 loc) · 1.23 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
import 'dotenv/config'; // this import automatically merges environment variables from .env file with process.env
export default {
expo: {
name: 'umi-feeds-app',
slug: 'umi-feeds-app',
version: '1.0.1',
orientation: 'portrait',
icon: './assets/images/icon.png',
scheme: 'umifeeds',
userInterfaceStyle: 'automatic',
splash: {
image: './assets/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff'
},
updates: {
fallbackToCacheTimeout: 0
},
assetBundlePatterns: [
'**/*'
],
ios: {
supportsTablet: true,
bundleIdentifier: 'org.bitsofgood.umifeeds',
buildNumber: '1.0.1'
},
android: {
package: 'org.bitsofgood.umifeeds',
versionCode: 2,
adaptiveIcon: {
foregroundImage: './assets/images/adaptive-icon.png',
backgroundColor: '#FFFFFF'
},
config: {
googleMaps: {
apiKey: 'AIzaSyCzsET6HCV4T5y-xd8DEHabQETMvGp33hc'
}
},
useNextNotificationsApi: true
},
web: {
favicon: './assets/images/favicon.png'
},
extra: {
AXIOS_BASEURL: process.env.AXIOS_BASEURL,
GOOGLE_MAPS_API_KEY: process.env.GOOGLE_MAPS_API_KEY,
}
}
};