Skip to content

updated firebase crashlytics and some minor gradle config warnnings #350

updated firebase crashlytics and some minor gradle config warnnings

updated firebase crashlytics and some minor gradle config warnnings #350

Workflow file for this run

name: Android CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: 17
cache: 'gradle'
- name: Loading submodules
run: git submodule update --init --recursive
- name: Loading secrets
env:
gservices: ${{ secrets.googleservices }}
aqicnkey: ${{ secrets.aqicnapikey }}
run: |
echo $gservices > ./app/google-services.json
echo $aqicnkey > ./app/src/main/res/values/api_aqicn.xml
- name: Build the app
run: ./gradlew build