Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

not showing icon android 1 #640

Open
kasunsulochana opened this issue Jun 6, 2020 · 1 comment
Open

not showing icon android 1 #640

kasunsulochana opened this issue Jun 6, 2020 · 1 comment

Comments

@kasunsulochana
Copy link

i'm using android 1

WhatsApp Image 2020-06-06 at 10 28 23

@alexandrox92
Copy link

Could you pass me the code fragment that you use to obtain the token in android?

this is my index.js and i can't get the token.

var app = {
// Application Constructor
initialize: function() {
document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
},

// deviceready Event Handler
onDeviceReady: function() {
    this.receivedEvent('deviceready');
    this.pushNotification();
},

// Update DOM on a Received Event
receivedEvent: function(id) {
    var parentElement = document.getElementById(id);
    var listeningElement = parentElement.querySelector('.listening');
    var receivedElement = parentElement.querySelector('.received');
    listeningElement.setAttribute('style', 'display:none;');
    receivedElement.setAttribute('style', 'display:block;');
    console.log('Received Event: ' + id);
},
pushNotification: function(){

/***********************************************************************************************/

  FCMPluginNG.onNotification(function(data)
  {
    if(data.wasTapped){
      alert(JSON.stringify(data));
    }else{
      alert(JSON.stringify(data));
    }
  });

/***********************************************************************************************/

}

};

app.initialize();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants