We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f07641 commit 2f57eb3Copy full SHA for 2f57eb3
.github/workflows/ci.yml
@@ -60,6 +60,11 @@ jobs:
60
with:
61
java-version: 11
62
63
+ - name: Set up Node
64
+ uses: actions/setup-node@v2
65
+ with:
66
+ node-version: 16
67
+
68
- name: Grant execute permission for gradlew
69
run: chmod +x gradlew
70
working-directory: ./android
android/build.gradle
@@ -44,8 +44,8 @@ android {
44
}
45
46
compileOptions {
47
- sourceCompatibility JavaVersion.VERSION_1_8
48
- targetCompatibility JavaVersion.VERSION_1_8
+ sourceCompatibility JavaVersion.VERSION_11
+ targetCompatibility JavaVersion.VERSION_11
49
50
51
unitTestVariants.all {
@@ -66,7 +66,6 @@ android {
repositories {
google()
mavenCentral()
- jcenter()
71
72
dependencies {
0 commit comments