flutter_tts icon indicating copy to clipboard operation
flutter_tts copied to clipboard

Fluttertts package, Detected as Suspicous Package by Antivirus Apps

Open ramkshukla opened this issue 1 year ago • 2 comments

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

flutter_tts: ^4.0.2 

final FlutterTts flutterTts = FlutterTts(); 

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(); }

ramkshukla avatar Jul 17 '24 11:07 ramkshukla

@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 avatar Jul 21 '24 03:07 dlutton

@dlutton Hi, same Package i used in different app, and i have got same issue of detecting app as suspicious.

ramkshukla avatar Jul 24 '24 12:07 ramkshukla