mintware-de / flutter_barcode_reader

A flutter plugin for reading 2D barcodes and QR codes.
MIT License
628 stars 463 forks source link

Fixed plugin registration to enable use this plugin with Flutter feature add-to-app + engine pre-warn #168

Closed santiihoyos closed 4 years ago

santiihoyos commented 4 years ago

When we used this plugin in Flutter as add-to-app module. We found that plugin registration crashes when try to pre-warn the engine in application startup.

So, this crash is caused by the call registrar.activity() on method registerWith . For fix we remove all call to activity() getter on plugin registration and call it only when Flutter side calls to "scan".

regards.

devtronic commented 4 years ago

Thanks @santiihoyos