You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"); }
@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?
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(); }
The text was updated successfully, but these errors were encountered: