Open ramkshukla opened 3 months ago
@ramkshukla this package uses the native TTS engine on your device, so it's possible it's picking that up as suspicious? Does your software determine if it's a specific library or dependency that is suspicious?
@dlutton Hi, same Package i used in different app, and i have got same issue of detecting app as suspicious.
I am trying to build build and app where i have used Fluttertts package for text recognition. But when i install the app on device containing Antivirus app, the app is detected as Suspicious and giving warning.
Suspicious app detected! Demo has been reported as a suspicious app.
I have used the latest package from pub.dev
I have called below method, in initState method
Future<void> _speak() async { await flutterTts.speak("Hello, Good morning"); }
I have called the below method in dispose method
Future<void> pauseFluttertts() async { await flutterTts.pause(); }