Skip to content

Commit

Permalink
bugfix android not woking flutter-moum#89
Browse files Browse the repository at this point in the history
  • Loading branch information
sumichell committed Nov 22, 2024
1 parent de46f5e commit 8f87f32
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
namespace 'com.flutter.moum.screenshot_callback'
compileSdkVersion 33

defaultConfig {
Expand All @@ -35,6 +36,13 @@ android {
lintOptions {
disable 'InvalidPackage'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}

dependencies {
Expand Down

0 comments on commit 8f87f32

Please sign in to comment.