We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had been using this with a github action recently, but a change inside github actions has broken the functionality here.
This is the thread in github actions that talks about the breaking changes:
actions/runner-images#8952 (comment)
I've replaced the whole github action with the following:
I'm only referencing Java 11 here because I need Java 8 in my project for legacy reasons.
- name: Set Up Android tools run: | JAVA_HOME=${JAVA_HOME_11_X64} ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --sdk_root=$ANDROID_SDK_ROOT --install "platforms;android-26" JAVA_HOME=${JAVA_HOME_11_X64} ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --sdk_root=$ANDROID_SDK_ROOT --install "build-tools;30.0.3"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had been using this with a github action recently, but a change inside github actions has broken the functionality here.
This is the thread in github actions that talks about the breaking changes:
actions/runner-images#8952 (comment)
I've replaced the whole github action with the following:
I'm only referencing Java 11 here because I need Java 8 in my project for legacy reasons.
The text was updated successfully, but these errors were encountered: