We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d3ade9 commit df63bbfCopy full SHA for df63bbf
1 file changed
.github/actions/setup/action.yml
@@ -8,7 +8,7 @@ runs:
8
- name: Set up JDK 17
9
uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4.8.0
10
with:
11
- distribution: 'zulu'
+ distribution: 'temurin'
12
java-version: '17'
13
cache: 'gradle'
14
@@ -24,6 +24,11 @@ runs:
24
- name: Set up Android
25
uses: android-actions/setup-android@9fc6c4e9069bf8d3d10b2204b1fb8f6ef7065407 # v3.2.2
26
27
+ - name: Install Android SDK components
28
+ run: |
29
+ sdkmanager "build-tools;35.0.0" "platforms;android-35" "platform-tools"
30
+ shell: bash
31
+
32
- name: Download Android dependencies
33
run: ./gradlew androidDependencies
34
shell: bash
0 commit comments