generated from victorbalssa/expo-ticket-app
-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathapp.config.js
89 lines (88 loc) · 2.38 KB
/
app.config.js
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
const IS_DEV = process.env.APP_VARIANT === 'development';
export default {
name: IS_DEV ? 'Abacus.dev' : 'Abacus',
description: 'Abacus: Firefly III mobile application.',
slug: 'abacus',
privacy: 'public',
platforms: [
'ios',
'android',
],
version: '0.20.1',
orientation: 'portrait',
updates: {
enabled: true,
checkAutomatically: 'ON_ERROR_RECOVERY',
url: 'https://u.expo.dev/292ed6dc-804c-4444-95f5-fa5d76d9913b',
},
ios: {
icon: './src/images/icon-abacus.png',
splash: {
image: './src/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
dark: {
backgroundColor: '#121215',
},
},
supportsTablet: true,
infoPlist: {
NSFaceIDUsageDescription: 'Abacus use Authentication with TouchId or FaceID',
NSLocalNetworkUsageDescription: 'Abacus use Local Network to access Firefly III on your local network',
NSAppTransportSecurity: {
NSAllowsArbitraryLoads: true,
},
},
config: {
usesNonExemptEncryption: false,
},
bundleIdentifier: IS_DEV ? 'abacus.fireflyiii.ios.app.dev' : 'abacus.ios.app',
buildNumber: '0.20.1',
},
android: {
icon: './src/images/icon-abacus.png',
adaptiveIcon: {
foregroundImage: './src/images/icon-abacus-foreground.png',
backgroundImage: './src/images/icon-abacus-background.png',
},
splash: {
image: './src/images/splash.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
dark: {
backgroundColor: '#121215',
},
},
playStoreUrl: 'https://play.google.com/store/apps/details?id=abacus.fireflyiii.android.app',
package: IS_DEV ? 'abacus.fireflyiii.android.app.dev' : 'abacus.fireflyiii.android.app',
versionCode: 32,
},
scheme: 'abacusfiiiapp',
githubUrl: 'https://github.com/victorbalssa/abacus',
runtimeVersion: {
policy: 'sdkVersion',
},
extra: {
eas: {
projectId: '292ed6dc-804c-4444-95f5-fa5d76d9913b',
},
},
plugins: [
'expo-asset',
'expo-secure-store',
'expo-localization',
'./plugins/withAndroidStyles',
'./plugins/withAndroidManifest',
[
'expo-font',
{
fonts: [
'./src/fonts/Montserrat-Bold.ttf',
'./src/fonts/Montserrat-Regular.ttf',
'./src/fonts/Montserrat-Light.ttf',
],
},
],
],
userInterfaceStyle: 'automatic',
};