B4X:
Private Sub CheckBoxUyari_CheckedChange(Checked As Boolean)
If Checked Then
KVS.Put("BildirimlerAcik", True)
CallSubDelayed(FirebaseMessaging, "SubscribeToTopics")
Else
KVS.Put("BildirimlerAcik", False)
CallSubDelayed(FirebaseMessaging, "Service_Destroy") '<====== here not firing if application still open.
End If
End Sub