forked from WS22-23-SWEPM3ILV-INF-BA-VZ-Group-2/App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.js
45 lines (44 loc) · 991 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
45
import 'dotenv/config'
export default {
expo: {
name: 'app-tesste',
slug: 'app-tesste',
entryPoint: './src/App.js',
version: '1.0.1-1',
orientation: 'portrait',
icon: './assets/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './assets/icon.png',
resizeMode: 'cover',
backgroundColor: '#ffffff',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
supportsTablet: true,
buildNumber: '2',
bundleIdentifier: "br.com.tesste"
},
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: '95b3c61e-eb08-43c5-aea7-966bb0666049',
},
},
owner: 'lbeghini',
},
}