-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
42 lines (41 loc) · 1017 Bytes
/
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
import 'dotenv/config';
import type {ConfigContext, ExpoConfig} from '@expo/config';
export default ({config}: ConfigContext): ExpoConfig => ({
...config,
name: 'dooboo',
slug: 'dooboo-expo-router',
privacy: 'public',
platforms: ['ios', 'android', 'web'],
version: '1.0.0',
orientation: 'default',
icon: './assets/icon.png',
plugins: ['sentry-expo', 'expo-localization'],
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
extra: {
SUPABASE_URL: process.env.SUPABASE_URL,
SUPABASE_ANON_KEY: process.env.SUPABASE_ANON_KEY,
},
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
userInterfaceStyle: 'automatic',
scheme: 'doobooexporouter',
ios: {
supportsTablet: true,
infoPlist: {
CFBundleAllowMixedLocalizations: true,
},
},
android: {
userInterfaceStyle: 'automatic',
},
web: {
bundler: 'metro',
},
description: 'Starter project from dooboo-cli.',
});