dlutton / flutter_tts

Flutter Text to Speech package
MIT License
613 stars 258 forks source link

Fluttertts package, Detected as Suspicous Package by Antivirus Apps #514

Open ramkshukla opened 3 months ago

ramkshukla commented 3 months ago

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

dlutton commented 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?

ramkshukla commented 3 months ago

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