forked from victorbalssa/abacus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
78 lines (78 loc) · 2.16 KB
/
app.json
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
{
"expo": {
"name": "Abacus",
"description": "Abacus: Firefly III mobile application.",
"slug": "abacus",
"privacy": "public",
"platforms": [
"ios",
"android",
"web"
],
"version": "0.10.2",
"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": "#25292e"
}
},
"supportsTablet": true,
"infoPlist": {
"NSFaceIDUsageDescription": "Abacus use Authentication with TouchId or FaceID",
"NSLocalNetworkUsageDescription": "Abacus use Local Network to connect to your local instance of Firefly III"
},
"config": {
"usesNonExemptEncryption": false
},
"bundleIdentifier": "abacus.ios.app",
"buildNumber": "0.10.2"
},
"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": "#25292e"
}
},
"playStoreUrl": "https://play.google.com/store/apps/details?id=abacus.fireflyiii.android.app",
"package": "abacus.fireflyiii.android.app",
"versionCode": 11
},
"web": {
"bundler": "metro"
},
"scheme": "abacusiosapp",
"githubUrl": "https://github.com/victorbalssa/abacus",
"runtimeVersion": {
"policy": "sdkVersion"
},
"extra": {
"eas": {
"projectId": "292ed6dc-804c-4444-95f5-fa5d76d9913b"
}
},
"plugins": [
"expo-localization",
"./plugins/withAndroidManifest",
"@config-plugins/detox"
],
"userInterfaceStyle": "automatic"
}
}