Skip to content

Commit 4056b17

Browse files
committed
Workaround license
1 parent fe868d8 commit 4056b17

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

Diff for: .github/workflows/basic.yml

+6
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,11 @@ jobs:
1414
uses: actions/setup-java@v1
1515
with:
1616
java-version: 17
17+
# AGP 8.2 requires 34.0.0-rc3 - see https://issuetracker.google.com/issues/236167971#comment36
18+
# and https://github.com/actions/runner-images/issues/7506#issuecomment-1533097084
19+
# TODO: Remove when AGP updates Build Tools to 34.0.0 and pre-installed in the runner
20+
#- name: Install Android Build Tools 34.0.0-rc3
21+
# run: yes | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "build-tools;34.0.0-rc3"
22+
# shell: bash
1723
- name: Build with Gradle
1824
run: ./gradlew build test

Diff for: build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ buildscript {
22
ext {
33
kotlinVersion = '1.8.20'
44
// Current release: Flamingo / AGP 8.0
5-
//gradlePluginVersion = '8.0.2'
6-
//lintVersion = '31.0.2'
5+
gradlePluginVersion = '8.0.2'
6+
lintVersion = '31.0.2'
77
// Current preview release: Hedgehog
8-
gradlePluginVersion = '8.2.0-alpha07'
9-
lintVersion = '31.2.0-alpha07'
8+
//gradlePluginVersion = '8.2.0-alpha07'
9+
//lintVersion = '31.2.0-alpha07'
1010
}
1111

1212
repositories {

0 commit comments

Comments
 (0)