We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9057ccd commit e927884Copy full SHA for e927884
.github/workflows/ci.yml
@@ -12,6 +12,12 @@ jobs:
12
steps:
13
- uses: actions/checkout@v2
14
15
+ - name: "Setup Java"
16
+ uses: actions/setup-java@v4
17
+ with:
18
+ distribution: 'temurin'
19
+ java-version: '17'
20
+
21
- name: Get Gradle wrapper
22
working-directory: DailyDemo
23
run: gradle wrapper --gradle-version 8.4
DailyDemo/app/build.gradle
@@ -16,11 +16,16 @@ android {
versionCode 1
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
24
25
+ kotlinOptions {
26
+ jvmTarget = JavaVersion.VERSION_17
27
+ }
28
29
buildTypes {
30
release {
31
minifyEnabled false
0 commit comments