49 questions
0 votes
0 answers
81 views
iOS framework build fails with google_maps_flutter ^2.14.2 when running flutter build ios-framework
I am trying to generate iOS frameworks from a Flutter module using the flutter build ios-framework command. The build fails during the plugin compilation stage when the google_maps_flutter plugin is ...
0 votes
0 answers
48 views
Can a Flutter module be integrated as an AAR/XCFramework into another Flutter app to encapsulate implementation logic?
I'm exploring the possibility of creating a Flutter module that can be built as an AAR (Android) and XCFramework (iOS), and then integrated into another Flutter app as a binary dependency, similar to ...
0 votes
0 answers
59 views
How to integrate a Flutter module into a Flutter host app without exposing Dart source code?
I'm integrating a Flutter module (built as an .aar) into a Flutter host app. The goal is to keep the module's Dart code hidden (like an SDK), while still allowing UI launch and data exchange via ...
0 votes
1 answer
92 views
Uploading aar files to google artifact registry
I have a Flutter module for my native Android project that I have built an AAR file for. Now I want to do this automatically using my GitLab.ci file and then upload it to Google Artifact Registry. The ...
2 votes
0 answers
315 views
Flutter Crash - Cannot execute operation because FlutterJNI is not attached to native
I have integrated flutter into Native Android app as Module. In this implementation I have extended the FlutterFragment and with Cached Engine. This custom flutter fragment is being used inside ...
1 vote
0 answers
279 views
Failed to lookup symbol 'TfLiteInterpreterOptionsCreate': dlsym(RTLD_DEFAULT, TfLiteInterpreterOptionsCreate): symbol not found
I reported an error while exporting tflite_flutter as framework through the flutter module to the iOS native project. environment: flutter 3.7.0,xcode 14 dependencies: tflite_flutter 0.10.4 Unhandled ...
0 votes
1 answer
247 views
Settings.gradle include project based on build variant
I have a flutter module and integrated that in my native module. You can see the integration code below. In my native app, I have four flavors "dev", "debug", "uat", &...
1 vote
1 answer
275 views
How to launch flavour of flutter module from native side?
I'm using flutter module to add some screens in my native iOS app. same thing is used on android side as well. Now I want to add dev, prod flavour to the app. I've managed to do so in flutter module ...
0 votes
0 answers
57 views
How do you share a private module between a GUI program and the CLI version on a Dart/Flutter project?
I have a CLI tool writer in Dart. How can I make a GUI tool that shares the same codebase or module so they can both deliver the same functionality? So they can also update each other and evolve in ...
0 votes
0 answers
39 views
Firebase phone Authenication through otp
how to solve this error E/FirebaseAuth( 4187): [SmsRetrieverHelper] SMS verification code request failed: unknown status code: 17010 null Phone number verification i added android device verification ...
1 vote
0 answers
155 views
Flutter Plugin project could not find C++ libraries
TL;DR; Flutter Plugin project which uses .framework as iOS library, could not locate some of cpp libraries such as <list> I am working on a Flutter Application which contains platform native ...
0 votes
0 answers
719 views
Create a native SDK using Flutter
I'm with a task but I don't know how to start this I searched a lot, there are very few articles about that, but none of then worked I need to create a SDK (library aar, framework) in flutter to be ...
0 votes
0 answers
190 views
Flutter modules in Xamarin project?
I have a Xamarin application that I want to use as a simple portal to other applications. I wanted to know if it was possible to integrate flutter modules into it. The Flutter documentation (https://...
0 votes
1 answer
284 views
Flutter module can't connect internet
Recently i working integrate flutter module to android native app, but i got problem. With debug app, flutter module working normal with internet. But after release app , flutter module cant connect ...
2 votes
1 answer
2k views
How to add dart-define in build.gradle on a Flutter Plugin?
I have the following app structure: - Main app (Android native) - Flutter module (aar) - Flutter plugin The main Android App uses a Flutter module that contains some Flutter plugins. One of this ...