Skip to content

Commit

Permalink
🐞 fix: update jvm target
Browse files Browse the repository at this point in the history
  • Loading branch information
tom8zds committed Jul 3, 2024
1 parent 7a4be2c commit f5b08ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ if (flutterVersionName == null) {
}

android {
namespace "com.example.localsend_rs"
namespace "github.tom8zds.localsend_rs"
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion

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'
}

sourceSets {
Expand Down

0 comments on commit f5b08ad

Please sign in to comment.