-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
88 lines (88 loc) · 2.5 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
79
80
81
82
83
84
85
86
87
88
{
"expo": {
"name": "Beefy",
"slug": "beefy",
"scheme": "beefy",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"newArchEnabled": false,
"ios": {
"supportsTablet": false,
"bundleIdentifier": "xyz.divvi.beefy",
"infoPlist": {
"NSCameraUsageDescription": "Connecting your camera allows you to scan QR codes for transactions.",
"NSUserTrackingUsageDescription": "We use the advertising identifier to accurately attribute app installs from ad campaigns.",
"NSFaceIDUsageDescription": "This is required for you to use Face ID to secure your account.",
"NSContactsUsageDescription": "Adding your contacts makes it easy to send and request payments with your friends.",
"NSLocationWhenInUseUsageDescription": "This app requires location access to provide location-based features.",
"ITSAppUsesNonExemptEncryption": false
},
"entitlements": {
"aps-environment": "production"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#242843"
},
"package": "xyz.divvi.beefy",
"permissions": [
"android.permission.CAMERA",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.INTERNET",
"android.permission.POST_NOTIFICATIONS"
]
},
"plugins": [
[
"expo-splash-screen",
{
"image": "./assets/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#242843"
}
],
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "15.1",
"useFrameworks": "static"
},
"android": {
"extraMavenRepos": ["https://sdk.withpersona.com/android/releases"]
}
}
],
[
"react-native-permissions",
{
"iosPermissions": ["Camera", "AppTrackingTransparency", "Contacts"]
}
],
[
"react-native-auth0",
{
"domain": "auth.valora.xyz"
}
],
"@divvi/mobile",
[
"./plugins/withCustomGradleProperties",
{
"org.gradle.jvmargs": "-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError"
}
]
],
"extra": {
"eas": {
"projectId": "daf99150-342e-4a9b-bfd5-61838b5e28c8"
}
},
"owner": "divvi"
}
}