-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.js
59 lines (55 loc) · 1.16 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
51
52
53
54
55
56
57
58
59
const LIGHT_SPLASH = {
image: './assets/SIGAALOGIN.png',
backgroundColor: '#FFFFFF',
resizeMode: 'contain',
};
const DARK_SPLASH = {
image: './assets/SIGAALOGIN.png',
backgroundColor: '#101010',
resizeMode: 'contain',
};
const SHARED_SPLASH = {
splash: {
...LIGHT_SPLASH,
dark: {
...DARK_SPLASH,
},
},
};
const config = {
name: 'SIGAA Mobile',
slug: 'sigaa',
version: '1.2.7',
orientation: 'portrait',
icon: './assets/SIGAA.png',
userInterfaceStyle: 'automatic',
splash: LIGHT_SPLASH,
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
...SHARED_SPLASH,
supportsTablet: true,
bundleIdentifier: 'com.sigaa',
buildNumber: '1.2.7',
},
android: {
...SHARED_SPLASH,
package: 'com.sigaa',
versionCode: 57,
userInterfaceStyle: 'automatic',
googleServicesFile: './google-services.json',
},
web: {
favicon: './assets/SIGAA.png',
...SHARED_SPLASH,
},
extra: {
eas: {
projectId: 'ed6d4bca-d4ae-4bc2-94d6-07ba8baa5e09',
},
},
plugins: ['@react-native-firebase/app', '@react-native-firebase/crashlytics'],
};
export default config;