Skip to content

Commit

Permalink
Merge pull request #47 from FauconSpartiate/patch-1
Browse files Browse the repository at this point in the history
Fix AGP 8.0 compile error
  • Loading branch information
kinex committed Jun 22, 2023
2 parents 9dc7dd1 + dbca25a commit 453f474
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ android {
namespace 'com.kineapps.flutter_file_dialog'
compileSdkVersion 33

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = '1.8'
}

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
Expand Down

0 comments on commit 453f474

Please sign in to comment.