-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.ts
48 lines (47 loc) · 1.44 KB
/
app.config.ts
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
import 'dotenv/config';
import { ExpoConfig, ConfigContext } from 'expo/config';
export default ({ config }: ConfigContext): ExpoConfig => ({
...config,
name: 'reservacion-vuelos-team5',
slug: 'reservacion-vuelos-team5',
version: '1.0.0',
orientation: 'portrait',
icon: './src/assets/icon.png',
userInterfaceStyle: 'light',
splash: {
image: './src/assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
// googleServicesFile: './GoogleService-Info.plist',
supportsTablet: true,
// bundleIdentifier: 'com.brightcoders.reservacion_vuelos_team5',
},
android: {
googleServicesFile: process.env.GOOGLE_SERVICES_JSON || process.env.GOOGLE_SERVICES_JSON_PATH,
adaptiveIcon: {
foregroundImage: './src/assets/adaptive-icon.png',
backgroundColor: '#FFFFFF',
},
package: 'com.brightcoders.reservacion_vuelos_team5',
},
web: {
favicon: './src/assets/favicon.png',
},
sdkVersion: '47.0.0',
plugins: ['@react-native-firebase/app', '@react-native-firebase/auth', '@react-native-google-signin/google-signin'],
extra: {
eas: {
projectId: '14ebe608-ea10-4f68-bff0-fc60a64662e0',
},
googleServices: process.env.GOOGLE_SERVICES_DATA
? (JSON.parse(process.env.GOOGLE_SERVICES_DATA) as { [key: string]: unknown })
: undefined,
},
owner: 'brightcoders',
});