Android Question Firebase Messaging and ESET Security Mobile

mehdi-moradpoor

New Member
Hi guys
i found a serious problem with Firebase Messaging Service (or Receiver).
after install my app on my device , the ESET Security Mobile found a detection and unsafe application of my app !!

Detection name :
Android/SMSFlooder.Agent.EY (variant)

after i checked my source codes , i understood that this problem is due the bellow sub :
B4X:
Sub fm_MessageArrived (Message As RemoteMessage)

End Sub
after i commented the MessageArrived Sub , the problem is gone (ESET no threats found), but it doesn't work because Firebase Messaging is not work .
i was change Firebase Messaging Service to a Receiver , but the problem was still there
how can i solve this problem?
 

JohnC

Expert
Licensed User
Longtime User
If you are not already compiling in "Release (obfuscated)", try doing so - it may change the code enough so it's won't have that malware signature string in it anymore.
 
Upvote 0
Top