-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
97 lines (97 loc) · 2.21 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
89
90
91
92
93
94
95
96
97
{
"expo": {
"userInterfaceStyle": "dark",
"name": "Papaya",
"slug": "papaya",
"privacy": "unlisted",
"version": "2.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"locales": {
"ru": "./locales/ru.json"
},
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#000000"
},
"scheme": "papaya",
"plugins": [
[
"expo-notifications",
{
"icon": "./assets/favicon.png",
"color": "#ffffff"
}
],
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static",
"deploymentTarget": "13.0"
}
}
]
],
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "tech.parasource.papaya.ios",
"buildNumber": "23",
"usesAppleSignIn": true,
"googleServicesFile": "./GoogleService-Info.plist",
"associatedDomains": [
"applinks:papaya.pw"
]
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#111111"
},
"useNextNotificationsApi": true,
"package": "tech.parasource.papaya.ios"
},
"web": {
"favicon": "./assets/favicon.png",
"config": {
"firebase": {
"apiKey": "AIzaSyDK7yoBuRjNxgs2jZYD7ZhzBdIrAIR3aBQ",
"authDomain": "papaya-364915.firebaseapp.com",
"projectId": "papaya-364915",
"storageBucket": "papaya-364915.appspot.com",
"messagingSenderId": "514770009692",
"appId": "1:514770009692:web:f46a548dfe02937b963099",
"measurementId": "G-YXX10KCGBQ"
}
}
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"expo.ts",
"expo.tsx",
"expo.js",
"expo.jsx",
"ts",
"tsx",
"js",
"jsx",
"json",
"wasm",
"svg"
]
},
"extra": {
"eas": {
"projectId": "2a708785-850e-484b-a7ac-9f9d0e2be9c9"
}
}
}
}