-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
62 lines (62 loc) · 1.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
{
"name": "leeloo",
"displayName": "Leeloo",
"analyticsKey": "UA-111111111-1",
"apiEndpoint": "https://leeloo.dreamoriented.org/",
"assetEndpoint": "https://api.assistivecards.com/",
"assetVersion": 224,
"planPrefix": "leeloo_",
"config": {
"language": true,
"tts": true,
"accent": false,
"apps": true,
"backgroundColor": "#6989FF",
"pFontColor": "#333333"
},
"storeId": {
"appStore": 1508952198,
"googlePlay": 4973589507294196000
},
"expo": {
"name": "Leeloo",
"slug": "leeloo",
"icon": "./assets/icon.png",
"version": "2.7.0",
"platforms": [
"ios",
"android"
],
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#6989FF"
},
"ios": {
"bundleIdentifier": "org.dreamoriented.leeloo",
"usesAppleSignIn": true,
"buildNumber": "2.7.0",
"requireFullScreen": true,
"supportsTablet": true,
"config": {
"googleSignIn": {
"reservedClientId": "com.googleusercontent.apps.494587339451-h03s4vdtg9g974gstr6m1dg12ekeekhr"
}
},
"googleServicesFile": "./GoogleService-Info.plist"
},
"android": {
"package": "org.dreamoriented.leeloo",
"permissions": [
"WAKE_LOCK"
],
"versionCode": 270,
"googleServicesFile": "./google-services.json"
},
"assetBundlePatterns": [
"**/*"
],
"privacy": "public",
"entryPoint": "node_modules/expo/AppEntry.js"
}
}