forked from hyochan/hackatalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.sample.json
45 lines (45 loc) · 1.1 KB
/
app.sample.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
{
"expo": {
"name": "HackaTalk",
"slug": "HackaTalk",
"privacy": "public",
"sdkVersion": "35.0.0",
"platforms": ["ios", "android", "web"],
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/icon.png",
"splash": {
"resizeMode": "cover",
"backgroundColor": "#ffffff",
"image": "./assets/splash.png"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"facebookDisplayName": "hackatalk",
"facebookAppId": "<facebookAppId>",
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.dooboolab.hackatalk",
"config": {
"googleSignIn": {
"reservedClientId": "<reservedClientId>"
}
}
},
"android": {
"package": "com.dooboolab.hackatalk",
"googleServicesFile": "<./google-services.json>",
"config": {
"googleSignIn": {
"certificateHash": "<certificateHash>"
}
}
},
"packagerOpts": {
"config": "./rn-cli.config.js",
"sourceExts": ["js", "jsx", "ts", "tsx", "svg"]
}
}
}