Commit a85cb951 by yuseok oh Committed by GitHub

build error fix (#480)

parent fc431199
...@@ -40,7 +40,8 @@ android { ...@@ -40,7 +40,8 @@ android {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
} }
defaultConfig { defaultConfig {
minSdkVersion 21 // from flutter sdk 3.2 minSdkVersion
minSdkVersion 19
if (project.android.hasProperty('namespace')) { if (project.android.hasProperty('namespace')) {
namespace 'io.github.ponnamkarthik.toast.fluttertoast' namespace 'io.github.ponnamkarthik.toast.fluttertoast'
} }
......
...@@ -47,7 +47,7 @@ android { ...@@ -47,7 +47,7 @@ android {
applicationId "com.example.example" applicationId "com.example.example"
// You can update the following values to match your application needs. // You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion 21 minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment