Android QR Code Scanning in Smartface 4.5 giving exception - smartface.io

I have developed an application in Smartface 4.4 which has a QR Code Reader in which the QR code are not auto-focusing. So i went to smartface 4.5.0 and tried with the sample code on the website https://www.smartface.io/developer/guides/plugins/codereader/
but got the exception
Can't find Variable SMFImageCode .
Then I tried he Code-reader object and debugged it and I got the following exception.
Please help to get this solved anyone.

Related

Could not locate aapt. Please ensure you have the Android buildtools installed FLUTTER

I have a problem with the application that I am trying to compile, the system generates the .apk for me, but it does not manually install the application on the device that I am debugging
The console gives me the following message:
Could not locate aapt. Please ensure you have the Android buildtools installed.
Exception: Problem building Android application: see above error(s).
Exited (sigterm)
I'm new to flutter I don't know what it could be, someone help me please, I'll be grateful

Could not find apksig-7.1.3.jar in android studio

I'm trying to sync build.gradle for a flutter app in android studio but it gave this error
this error comes after I tried solving "ssl peer shut down incorrectly" error using the first answer in this question .
I followed all three steps of that solution but without adding the certificates and then I reconverted the steps but I remained with the same error.
Then I was trying to upgrade the gradle but it was interuppted and then the above error occured.

What went wrong: Execution failed for task ':app:validateSigningDebug'

here is the exception I get when I try to run simple flutter app on my physical device
I was working flutter projects on Android studio and run it successfully , but after I update it with flutter and dart , I coudn't even run a simple app .. it requires me a unique application Id
here is how my build.gradle file looks like with the to do hint
The error says Failed to create keystore, please refer to this answer

Flutter code not compiling after upgrade to version 1.27.0-8.0.pre

I'm trying to run my desktop flutter application. Since i've upgraded my flutter version to dev channel (flutter version 1.27.0-8.0.pre), code is not compiling after that. It shows following error on code compilation.
Please help me out. Thanks

Flutter using cloud_firestore giving errors on IOS Simulator

It's my first time trying to use Firebase cloud_firestore together with Flutter. It works fine with the Android emulator. But I am getting the following errors, when trying to Run on the IOS Sim:
/Users/carsoncarbery/development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.2+3/ios/Classes/CloudFirestorePlugin.m:50:22: error: no visible #interface for 'FIRQuery' declares the selector 'queryWhereField:arrayContains:'
query = [query queryWhereField:fieldName arrayContains:value];
~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/carsoncarbery/development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.2+3/ios/Classes/CloudFirestorePlugin.m:221:29: error: no known class method for selector 'fieldValueForArrayUnion:'
return [FIRFieldValue fieldValueForArrayUnion:[self readValue]];
^~~~~~~~~~~~~~~~~~~~~~~
/Users/carsoncarbery/development/tools/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.2+3/ios/Classes/CloudFirestorePlugin.m:224:29: error: no known class method for selector 'fieldValueForArrayRemove:'
return [FIRFieldValue fieldValueForArrayRemove:[self readValue]];
^~~~~~~~~~~~~~~~~~~~~~~~
8 warnings and 3 errors generated.
Could not build the application for the simulator.
Error launching application on iPhone 6s.
I've also tried running the Runner directly from Xcode and get the same three build errors. Unfortunately I haven't been able to find an answer to this, so am posting the question. Any help would be gratefully received.
Thanks
I just experienced the same thing.
Following these guys
https://github.com/flutter/flutter/issues/24395
I did
pod update Firebase/Firestore
And it worked for me.
I'm using latest version of cloud firestore: 0.9.0+1
I can compile from both Xcode and VS Code.
There are a lot of warning messages when running on simulator. some of them look pretty nasty, but it works.