-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.config.js
More file actions
52 lines (51 loc) · 1.2 KB
/
app.config.js
File metadata and controls
52 lines (51 loc) · 1.2 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
import 'dotenv/config'
export default {
expo: {
name: 'FS Map Tool',
description:
"A small tool to know where you're flying in MS Flight Simulator 2020/2024.",
privacy: 'public',
slug: 'fsmaptool',
version: '1.3.2',
icon: './assets/icon.png',
splash: {
image: './assets/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
plugins: ['./plugins/withAndroid16KBPages', 'expo-font'],
updates: {
fallbackToCacheTimeout: 0,
},
assetBundlePatterns: ['**/*'],
ios: {
bundleIdentifier: 'com.riccardolardi.fsmaptool',
buildNumber: '1.3.2',
supportsTablet: true,
requireFullScreen: true,
infoPlist: {
ITSAppUsesNonExemptEncryption: false,
},
},
android: {
package: 'com.riccardolardi.fsmaptool',
versionCode: 19,
adaptiveIcon: {
foregroundImage: './assets/icon.png',
},
config: {
googleMaps: {
apiKey: process.env.GOOGLE_MAPS_API_KEY,
},
},
},
web: {
favicon: './assets/favicon.png',
},
extra: {
eas: {
projectId: 'ac857b12-b216-45fc-8bd7-9b79973ff436',
},
},
},
}