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 5e92e6c commit 540cb2aCopy full SHA for 540cb2a
.github/workflows/build.yml
@@ -15,6 +15,13 @@ jobs:
15
uses: actions/setup-node@v1
16
with:
17
node-version: "12.x"
18
+
19
+ - name: Fix Android build-tools issue
20
+ run: |
21
+ echo "Uninstalling build tools > 30"
22
+ echo "As a temporary workaround to fix builds"
23
+ SDKMANAGER=$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager
24
+ echo y | $SDKMANAGER --uninstall "build-tools;31.0.0"
25
26
- name: Build Plugin Source
27
run: cd src && npm run build
0 commit comments