Push Notification Android with ionic framework

I'm trying to send push notifications to my Android device from my server. Using plug PushNotification Cordova, my code is something.

        var androidConfig = {
          "senderID": "inspired-berm-101218",
        };

        document.addEventListener("deviceready", function(){
          $cordovaPush.register(androidConfig).then(function(result) {
            // Success
          }, function(err) {
            // Error
          })

          $rootScope.$on('$cordovaPush:notificationReceived', function(event, notification) {
            switch(notification.event) {
              case 'registered':
                if (notification.regid.length > 0 ) {
                  alert('registration ID = ' + notification.regid);
                  sessionService.set("token_device",notification.regid);

My information according to me, I followed advice from this forum and tutorials are good and are these:

Api KEY : AIzaSyDtZndyGvmWXF0TpYe83KVDgxRZ4MR3zK8

ID del proyecto: inspired-berm-101218

Número del proyecto: 805573676421

All this I use both my application and server are the same codes, but nevertheless, I receive the error:

{"multicast_id":7843752850335107662,"success":0,"failure":1,"canonical_ids":0,"results":[{"error":"MismatchSenderId"}]}

Try uninstalling the application on my phone and reinstall but nothing, does not this work for me.

Use this website to create and run the application again immediately, it gives the exact data.

Google Developers