Skip to content

Commit

Permalink
build(share_plus)!: Target Java 17 on Android (#2730)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbuberen committed Mar 19, 2024
1 parent 7a83e35 commit e6853a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
6 changes: 3 additions & 3 deletions packages/share_plus/share_plus/android/build.gradle
Expand Up @@ -30,12 +30,12 @@ android {
namespace 'dev.fluttercommunity.plus.share'

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

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = 17
}

defaultConfig {
Expand Down
Expand Up @@ -30,8 +30,8 @@ android {
namespace 'io.flutter.plugins.shareexample'

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

lintOptions {
Expand Down

This file was deleted.

0 comments on commit e6853a0

Please sign in to comment.