All Questions
Tagged with flutter-plugin flutter
479 questions
0
votes
0
answers
62
views
Flutter open_filex plugin error: "dartPluginClass does not exist" — targeting iOS/Android only
I'm working on a Flutter project using:
Flutter: 3.29.2
Dart SDK: 3.7.2
Platform: macOS (Apple Silicon)
Target platforms: iOS and Android only
My pubspec.yaml includes the following dependencies:
...
0
votes
0
answers
23
views
Error during registering plugin using FlutterDesktopPluginRegistrarRef
Here is the code it's windows application it's registering for native code to work
auto registrar = window.GetRegistrarForPlugin("SecuGenPlugin");
if (registrar != nullptr) {
...
2
votes
2
answers
845
views
How to fix 'cannot find symbol' error for Registrar in Razorpay_Flutter plugin on Flutter 3.29.0?
I'm using the razorpay_flutter plugin in my Flutter project, but when I try to build the app, I get the following error:
error: cannot find symbol
import io.flutter.plugin.common.PluginRegistry....
0
votes
0
answers
29
views
I am developing a Flutter plugin,it don't have plugin when I open Android module in androidstudio
As shown in the question,I am developing a Flutter plugin,I click open Android module in androidstudio,but I can't see plugin module in studio
enter image description here
enter image description here
...
1
vote
2
answers
63
views
can't find the class name "MyApp" in widgets_test.dart file
-> In the above code I am having problem in my widgets_test.dart file where its telling can't find the class name in my above code.
-> But I have changed my code like there is no "MyApp&...
0
votes
0
answers
162
views
Execution failed for task ':flutter_plugin_android_lifecycle:compileDebugJavaWithJavac'
Here is the error that I am facing while launching flutter application on andoid mobile:
Launching lib\main.dart on sdk gphone64 x86 64 in debug mode...
FAILURE: Build failed with an exception.
* ...
1
vote
1
answer
62
views
Integrating a Native Android Package via a Flutter Plugin
I am migrating from using a native android package to making a flutter plugin around this package. During the build process, I encounter an error indicating that the required dependency cannot be ...
1
vote
0
answers
53
views
Flutter record Package: Recorded Audio Contains Silence After 1 Minute
I'm using the record package in Flutter to record audio. The recording process seems to work without any errors, but the resulting file contains only the first minute of audio, followed by complete ...
0
votes
0
answers
39
views
RangeError (RangeError: Value not in range: 8)
I try to develop a plugin with flutter platform channel, everything is fine, but sometimes I got the following exception:
RangeError (RangeError: Value not in range: 8)"
The exception is (...
0
votes
0
answers
20
views
add native android module to flutter plugin for debugging
I have a native android Ml-kit module. I am trying to add it to flutter plugin (android) as a module dependency
settings.gladle:
include ':ml-kit'
project(':ml-kit').projectDir=new File(rootDir, "...
0
votes
2
answers
30
views
Android dependency not issue in Flutter Plugin
I am creating a flutter pluggin for a native sdk.
So I added the android dependency in the plugin/android/build.gradle file like this
android {
if (project.android.hasProperty("namespace"...
1
vote
1
answer
67
views
I/Process ( 8266): Sending signal. PID: 8266 SIG: 9 Lost connection to device
I am trying to integrate Google Maps into my Flutter project. I have followed these steps:
Generated a Google Maps API key.
Enabled billing on my Google Cloud account.
Added the necessary permissions ...
0
votes
0
answers
56
views
How to get the underlying WebView created by the webview_flutter package
I am creating a flutter plugin for a native iOS sdk and this sdk requires a webview.
If the flutter project uses, webview_flutter package to create the webview, how can I get the underlying webview in ...
-1
votes
1
answer
113
views
MissingPluginException in Flutter with tflite
I am trying to use the tflite package in my Flutter app, but I am encountering a MissingPluginException when attempting to load a model. Here are the details:
Flutter Version:
Flutter 3.24.4
...
0
votes
0
answers
108
views
Exif write data to image metadata using native_exif giving exceptioin
This is my permissions file:
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
...