-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.config.js
44 lines (43 loc) · 943 Bytes
/
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
import 'dotenv/config'
export default {
expo: {
name: 'my-app',
slug: 'my-app',
entryPoint: './src/App.js',
version: '1.0.1-1',
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './assets/road.png',
resizeMode: 'cover',
backgroundColor: '#ffffff',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
buildNumber: '2',
},
android: {
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#FFFFFF',
},
versionCode: 2,
package: 'com.lbeghini.myapp',
},
web: {
favicon: './assets/favicon.png',
},
extra: {
API_URL: process.env.API_URL,
eas: {
projectId: 'f7134fcd-83b8-4bec-8429-f164455d3981',
},
},
owner: 'lbeghini',
},
}