From 0ccf64e289f84402ff001c86e14714f03d637142 Mon Sep 17 00:00:00 2001 From: Sefa Ilkimen Date: Thu, 22 Jul 2021 15:40:38 +0200 Subject: [PATCH] chore: add workaround for missing DX files in build-tools 31 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0489f9..966b5c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,8 @@ jobs: java-version: 1.8 - name: Update test cert for httpbin.org run: npm run updatecert + - name: Add workaround for missing DX files in build-tools 31 (https://stackoverflow.com/a/68430992) + run: ln -s $ANDROID_HOME/build-tools/31.0.0/d8 $ANDROID_HOME/build-tools/31.0.0/dx && ln -s $ANDROID_HOME/build-tools/31.0.0/lib/d8.jar $ANDROID_HOME/build-tools/31.0.0/lib/dx.jar - name: Build test app run: scripts/build-test-app.sh --android --device - name: Upload artifact to BrowserStack