This message was deleted.
# community-support
s
This message was deleted.
v
Which part is unclear? The error says you have a problem on line 54. That line is >
Copy code
minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger()
And the error says you are invoking
toInteger()
on
null
. So you miss to have
flutter.minSdkVersion
set in your
local.properties
file in your root project.