Skip to content

Fix deprecated android methods #313

Fix deprecated android methods

Fix deprecated android methods #313

Workflow file for this run

name: Android CI
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
distribution: temurin
cache: gradle
- name: Check with Gradle
run: ./gradlew check
- name: Setup keystore
run: |
echo "${{ secrets.RELEASE_KEYSTORE }}" | base64 -d > ${{ runner.workspace }}/ziti-mobile.jks
- name: Build Android Debug Bundle
run: ./gradlew :app:bundleDebug
env:
RELEASE_KEYSTORE: ${{ runner.workspace }}/ziti-mobile.jks
RELEASE_KEYSTORE_PASSWORD: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}
- uses: actions/upload-artifact@v2
with:
name: ziti-mobile-edge.aab
path: app/build/outputs/bundle/debug/*.aab