Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions codemagic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ workflows:
script: |
echo "sdk.dir=$ANDROID_SDK_ROOT" > "$CM_BUILD_DIR/local.properties"

- name: Write google-services.json
script: |
echo $GOOGLE_SERVICES_JSON > app/google-services.json

- name: Build release AAB
script: |
# Auto-increment version code based on what's already on the Play Store.
Expand Down Expand Up @@ -84,6 +88,10 @@ workflows:
script: |
echo "sdk.dir=$ANDROID_SDK_ROOT" > "$CM_BUILD_DIR/local.properties"

- name: Write google-services.json
script: |
echo $GOOGLE_SERVICES_JSON > app/google-services.json

- name: Build debug APK
script: |
./gradlew assembleDebug
Expand Down
Loading