Skip to content

Commit 04571c7

Browse files
committed
fix: lint.yml: After installing sdkmanager, install Java 11.
Signed-off-by: jefft0 <[email protected]>
1 parent 1e16e72 commit 04571c7

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,11 @@ jobs:
121121
$SDK_MAN --install "$BTOOL" platform-tools "$PLATFORM" ndk-bundle
122122
> /dev/null
123123

124+
- name: Install Java 11
125+
uses: actions/setup-java@v1
126+
with:
127+
java-version: 11
128+
124129
- name: Build Go Core
125130
working-directory: packages
126131
run: make build_core.android GOMOBILE_TARGET=/amd64

android/app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ android {
3131

3232
lintOptions {
3333
htmlReport false
34+
textReport true
3435
abortOnError true
3536
}
3637
}

android/bridge/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ android {
2727
lintOptions {
2828
disable 'GradleDependency'
2929
htmlReport false
30+
textReport true
3031
warningsAsErrors true
3132
abortOnError true
3233
}

0 commit comments

Comments
 (0)