+1
-3
app.config.js
+1
-3
app.config.js
···
152
152
backgroundImage: './assets/icon-android-background.png',
153
153
backgroundColor: '#1185FE',
154
154
},
155
-
googleServicesFile: IS_DEV
156
-
? './google-services-dev.json'
157
-
: './google-services.json',
155
+
googleServicesFile: './google-services.json',
158
156
package: IS_DEV ? 'dev.xyz.blueskyweb.app' : 'xyz.blueskyweb.app',
159
157
intentFilters: [
160
158
{
+1
-1
docs/build.md
+1
-1
docs/build.md
···
31
31
- From inside the project directory:
32
32
- `bundler install` (this will install Cocoapods)
33
33
- After initial setup:
34
-
- Copy `google-services.json.example` to `google-services.json` and `google-services-dev.json.example` to `google-services-dev.json` or provide your own `google-services.json` files. (A real firebase project is NOT required)
34
+
- Copy `google-services.json.example` to `google-services.json` or provide your own `google-services.json`. (A real firebase project is NOT required)
35
35
- `npx expo prebuild` -> you will also need to run this anytime `app.json` or native `package.json` deps change
36
36
37
37
### Running the Native App
-41
google-services-dev.json.example
-41
google-services-dev.json.example
···
1
-
{
2
-
"project_info": {
3
-
"project_id": "blueskyweb-example",
4
-
"project_number": "100000000000",
5
-
"firebase_url": "https://blueskyweb-example.firebaseio.com"
6
-
},
7
-
"client": [
8
-
{
9
-
"client_info": {
10
-
"mobilesdk_app_id": "1:123456789000:android:f1bf012572b04063",
11
-
"android_client_info": {
12
-
"package_name": "dev.xyz.blueskyweb.app"
13
-
}
14
-
},
15
-
"oauth_client": [
16
-
{
17
-
"client_id": "123456789000.apps.googleusercontent.com",
18
-
"client_type": 3
19
-
}
20
-
],
21
-
"api_key": [
22
-
{
23
-
"current_key": "123456789000"
24
-
}
25
-
],
26
-
"services": {
27
-
"analytics_service": {
28
-
"status": 1
29
-
},
30
-
"appinvite_service": {
31
-
"status": 1,
32
-
"other_platform_oauth_client": []
33
-
},
34
-
"ads_service": {
35
-
"status": 2
36
-
}
37
-
}
38
-
}
39
-
],
40
-
"configuration_version": "1"
41
-
}