Error compiling cordova: unexpected token

2

Good morning, I'm struggling since the morning with the plugin of cordova of local notifications katzer ... I followed exactly the steps that are in github but when I give it

  

cordova build

Android I get a big mistake, I hope you can orient me, and if it is not too much to ask I also have doubts about how to use it since I have never implemented it, use cordova 5.4.1

    
asked by Eldelaguila77 26.01.2016 в 08:15
source

1 answer

1

Check your build.gradle you have a space in your variable keyPassword

  

unexpected token: Line 259, Column 66      gningConfigs.release.keyPassw ord)) {

should be something like:

android {
    ...
    signingConfigs {
          release {
              ...
              ...
              keyAlias "******"
              keyPassword "******"
         }
     }
}
    
answered by 27.01.2016 в 20:28