Skip to content

Commit

Permalink
chore(): Fix GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
moberwasserlechner committed Sep 18, 2022
1 parent 5f07641 commit 2f57eb3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:
with:
java-version: 11

- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 16

- name: Grant execute permission for gradlew
run: chmod +x gradlew
working-directory: ./android
Expand Down
5 changes: 2 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

unitTestVariants.all {
Expand All @@ -66,7 +66,6 @@ android {
repositories {
google()
mavenCentral()
jcenter()
}

dependencies {
Expand Down

0 comments on commit 2f57eb3

Please sign in to comment.