Reputation: 304
Flutter error while release apk file: I try to get location(Lat and Long) It's work well on debug mode but it's error on release mode. if anyone know pls help me thanks.
MissingPluginException(No implementation found for method init on channel flutter.baseflow.com/permissions/methods)
Upvotes: 1
Views: 1346
Reputation: 2340
In the build.gradle, I changed
classpath 'com.android.tools.build:gradle:4.0.0' to classpath 'com.android.tools.build:gradle:3.5.0'
And the error is gone now.
Upvotes: 0
Reputation: 57
I have the same issue
MissingPluginException(No implementation found for method checkPermissionStatus on channel flutter.baseflow.com/permissions/methods)
In release mode only with the uses of the plugins
permission_handler & file_picker
I followed your instruction but still having same issue.
Upvotes: 0
Reputation: 716
check this image, you just copy plugin code into your directory then in your pubspec define a path
Upvotes: 0
Reputation: 716
if invalidate/cache and restart doesn't work it means that the plugin is conflicting with another plugin try remove that plugin, and if that plugin is necessary for your app then you have to import that plugin into your code... it happened with me when i use file picker and permission handler plugin
Upvotes: 1