-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
71 lines (71 loc) · 1.84 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
{
"expo": {
"scheme": "le-chat",
"name": "Le Chat",
"slug": "le-chat-mobile",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.wyeo.lechatmobile",
"googleServicesFile": "./GoogleService-Info.plist",
"infoPlist": {
"NSCameraUsageDescription": "Le Chat a besoin de l'accès à votre appareil photo pour vous permettre de prendre une photo.",
"NSPhotoLibraryUsageDescription": "Le Chat a besoin de l'accès à vos photos pour vous permettre d'en importer."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.wyeo.lechatmobile",
"googleServicesFile": "./google-services.json"
},
"experiments": {
"typedRoutes": true,
"tsconfigPaths": true
},
"plugins": [
"@react-native-firebase/app",
"@react-native-firebase/auth",
"@react-native-firebase/crashlytics",
[
"@react-native-google-signin/google-signin",
{
"iosUrlScheme": "com.googleusercontent.apps.com.wyeo.lechatmobile"
}
],
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
],
"expo-router",
"expo-font",
"expo-localization"
],
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "a051eca7-0223-49e5-be73-29c171299e56"
}
}
}
}