How to capture biometric data from rdservices for aeps payment
I found solution for native android not for flutter. I just want solution for android only not ios
Related
I would like to know whether Flutter supports Android TV. Please provide a suggestion to access the remote key in my application if Flutter supports Android TV.
There is no where mentioned officially about Android TV in flutter website but Android TV Supports play store so you can somehow create app for TV in flutter.
But Google Android Studio (Java/Kotlin) officially supports Android TV.
I saw that it is impossible to choose the type of biometric to use in the local_auth plugin in flutter. (Can my app choose the biometric type a user uses to authenticate?)
I would like to know if it is the same even under native android or IOS?
Thanks in advance!
Currently, in my application, I have to provide biometric authentication for sign in but local says there is a biometric type finger only available.
I am using Samsung m31 and in Kotak Mahindra bank application they allow me to use a finger as well as face option.
Why local_auth not giving face option?
And what will it choose by default if any device has both options face and finger?
You can get the available biometric check for the mobile using the following code
List<BiometricType> availableBiometrics = await auth.getAvailableBiometrics();
Android local_auth uses BiometricPrompt and it does not support Face unlock in Android 9. You can read more about it here
You can use sensitiveTransaction parameter to set the sensitivity of the transaction which handles setConfirmationRequired() in Android to enable Face lock for the supported device. You can read about it here
Kotak Bank app is a native application that gives android SDK features directly to access all available biometric locks but in the case of Flutter, developers are dependent on the implementation of the plugin. You can probably enhance the implementation as per your requirement.
Is there any voice SDK available for a flutter.
I want to add voice calling feature in my app, So far I have integrated agora video SDK bt I want specific voice SDK which supports both platform i.e ios and android
Agora audio sdk for flutter is still under testing phase right now, if you want to use it for your flutter app you can find the SDK over here : https://github.com/AgoraIO/Flutter-SDK/tree/audio-only
I want my app to take OTP automatically, In android, we have the SMS retrieval API for that, so how to implement the same thing for IOS and android using flutter
Currently, there is no official Flutter plugin developed by the Flutter team for this. You have two options for this:
Use plugins created by the developer community. Try sms_retriever.
Write your own platform-specific code (e.g. your Android code in Java), and invoke it from Flutter. Read more about this here.