-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2. skip google-services.json and keystore.properties for local dev and CI test.
- Loading branch information
1 parent
e80b2e1
commit 5a60267
Showing
4 changed files
with
12 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ on: | |
tags: | ||
- '*' | ||
|
||
env: | ||
PROD_RELEASE_CI: true | ||
|
||
jobs: | ||
build_release_github: | ||
environment: production | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1 @@ | ||
[![Test](https://github.com/kid1412621/subspace/actions/workflows/test.yml/badge.svg)](https://github.com/kid1412621/subspace/actions/workflows/test.yml) | ||
|
||
# Project setup | ||
|
||
1. Add a dummy google-services.json to app directory: | ||
|
||
```bash | ||
cat << EOF > app/google-services.json | ||
{ | ||
"project_info": { | ||
"project_number": "0", | ||
"project_id": "id", | ||
"storage_bucket": "bucket" | ||
}, | ||
"client": [ | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "app-id", | ||
"android_client_info": { "package_name": "me.nanova.subspace" } | ||
}, | ||
"api_key": [{"current_key": "key"}] | ||
} | ||
] | ||
} | ||
EOF | ||
``` | ||
|
||
2. Add a dummy keystore.properties to project root directory: | ||
|
||
```bash | ||
cat << EOF > keystore.properties | ||
storeFile:keystore.jks | ||
storePassword:fake-password | ||
keyAlias:fake-key-alias | ||
keyPassword:fake-password | ||
EOF | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters