-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp.config.js
More file actions
52 lines (51 loc) · 1.49 KB
/
app.config.js
File metadata and controls
52 lines (51 loc) · 1.49 KB
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
const IS_DEV = process.env.APP_VARIANT === 'development';
export default {
expo: {
name: IS_DEV ? 'Finans (Dev)' : 'Finans',
slug: 'finance-app',
version: '2.1.6',
orientation: 'portrait',
icon: IS_DEV ? './src/assets/dev-icon.png' : './src/assets/icon.png',
userInterfaceStyle: 'automatic',
splash: {
image: './src/assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#284D63',
},
updates: {
fallbackToCacheTimeout: 0,
url: 'https://u.expo.dev/752d9743-e7cd-4faf-b1a0-e6f9a43a91d9',
},
assetBundlePatterns: ['**/*'],
ios: {
googleServicesFile: process.env.GOOGLE_SERVICES_PLIST,
supportsTablet: true,
bundleIdentifier: IS_DEV ? 'com.joaomlg.financeapp.dev' : 'com.joaomlg.financeapp',
},
android: {
googleServicesFile: process.env.GOOGLE_SERVICES_JSON,
adaptiveIcon: {
foregroundImage: IS_DEV
? './src/assets/dev-adaptive-icon.png'
: './src/assets/adaptive-icon.png',
backgroundColor: '#E5E7EB',
},
package: IS_DEV ? 'com.joaomlg.financeapp.dev' : 'com.joaomlg.financeapp',
},
web: {
favicon: './src/assets/favicon.png',
},
extra: {
eas: {
projectId: '752d9743-e7cd-4faf-b1a0-e6f9a43a91d9',
},
},
runtimeVersion: 'exposdk:51.0.0',
plugins: [
'@react-native-firebase/app',
'@react-native-firebase/auth',
'@react-native-google-signin/google-signin',
'expo-font',
],
},
};