-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
66 lines (64 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { ExpoConfig } from 'expo/config'
const config: ExpoConfig = {
name: 'Otobüsüm Anlık',
slug: 'otobusum-anlik',
version: '1.2.3',
orientation: 'portrait',
icon: './assets/icon.png',
scheme: 'otobusum-anlik',
userInterfaceStyle: 'automatic',
newArchEnabled: false,
extra: {
eas: {
projectId: '2c43cbc3-221c-4ca7-ac8c-ebfcc102426c',
},
},
web: {
favicon: './assets/icon.png',
},
ios: {
supportsTablet: true,
},
updates: {
url: 'https://u.expo.dev/2c43cbc3-221c-4ca7-ac8c-ebfcc102426c',
requestHeaders: {
'expo-channel-name': 'production',
},
},
runtimeVersion: {
policy: 'appVersion',
},
androidStatusBar: {
barStyle: 'light-content',
translucent: true,
},
android: {
config: {
googleMaps: {
apiKey: process.env.EXPO_PUBLIC_MAP_API,
},
},
softwareKeyboardLayoutMode: 'pan',
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#0a0a0a',
},
package: 'com.anonymous.otobusumanlik',
},
plugins: [
'expo-router',
'expo-localization',
'expo-location',
[
'expo-splash-screen',
{
image: './assets/icon.png',
backgroundColor: '#0a0a0a',
},
],
],
experiments: {
typedRoutes: true,
},
}
export default config