Skip to content

Commit

Permalink
Add sourceCompatibility and targetCompatibility in Android app build …
Browse files Browse the repository at this point in the history
…gradle
  • Loading branch information
KarinBerg committed Jan 10, 2025
1 parent b221f89 commit 19f78f7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions recipients_app/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ android {
main.java.srcDirs += 'src/main/kotlin'
}

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

defaultConfig {
applicationId "org.socialincome.app"
minSdkVersion 21
Expand Down

0 comments on commit 19f78f7

Please sign in to comment.