We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e52221f commit 0921054Copy full SHA for 0921054
.circleci/README.md
@@ -14,9 +14,10 @@
14
- FASTLANE_ANDROID_SERVICE_ACCOUNT
15
- Create service-account(firebase_app_distribution role) from google cloud console
16
- Download JSON key file
17
- - Decode as a base64
18
- - `cat service-account.json | base64 >> decoded.txt`
19
- - Save decoded text to environment
+ - Encode as a base64
+ - `cat service-account.json | base64`
+ - Save encoded text to environment
20
+ - You can decode text like `echo "encoded-base64-text" | base64 --decode`
21
- FASTLANE_ANDROID_APP_ID
22
- Open your firebase project settings > general
23
- Find your android app (formatted like 1:xxxxxxxxxxxxxxxx)
0 commit comments