0
I’m implementing Push Notification in my app, it was working, more now the error in two variables not defined in Resource in google_app_id and gcm_defaultSenderId. When I try to add them manually in Resource from the right of first more on second see that I will run already accuses me the error again (Resource file and overwritten)
what may be taking place so they don’t get fixed in my application ?
if (!GetString(Resource.String.google_app_id).Equals("000000000000000000000000000"))
throw new System.Exception("Invalid Json file");
Task.Run(() => {
var instanceId = FirebaseInstanceId.Instance;
instanceId.DeleteInstanceId();
Android.Util.Log.Debug("TAG", "{0} {1}", instanceId.Token, instanceId.GetToken(GetString(Resource.String.gcm_defaultSenderId), Firebase.Messaging.FirebaseMessaging.InstanceIdScope));
});