From 4949ccd0b87405c69b29dc94481e60ddda7e5357 Mon Sep 17 00:00:00 2001 From: Kyosuke Takayama Date: Mon, 19 Aug 2024 17:15:21 +0900 Subject: [PATCH] fix: build error on flutter 3.24.0 --- android/build.gradle | 4 ++-- android/gradle.properties | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index c1c4fc3..aac4870 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -23,7 +23,7 @@ apply plugin: 'com.android.library' android { namespace 'com.example.launchexternalapp' - compileSdkVersion 28 + compileSdkVersion 31 defaultConfig { minSdkVersion 16 @@ -31,4 +31,4 @@ android { lintOptions { disable 'InvalidPackage' } -} \ No newline at end of file +} diff --git a/android/gradle.properties b/android/gradle.properties index a5965ab..94adc3a 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,4 +1,3 @@ org.gradle.jvmargs=-Xmx1536M -android.enableR8=true android.useAndroidX=true -android.enableJetifier=true \ No newline at end of file +android.enableJetifier=true