Skip to main content

Flutter Issue - Cannot invoke "String.length()" because "<parameter1>" is null

· One min read

D8: java.lang.NullPointerException: Cannot invoke "String.length()" because "<parameter1>" is null

Read these 2 issue first:

Check Gradle Plugin compatible version, then update your android plugin version based on gradle version:

android/settings.gradle
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
// id "com.android.application" version "7.3.0" apply false
id "com.android.application" version "8.3.0" apply false
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
}