I\'m developing an app on Ionic Framework/cordova, and when I try \"cordova run android\" I get this:
\"Error: No resource found that matches the give
For anyone encountering this issue using Android Studio and/or Gradle, you just need to make sure that you have the right dependency in your grade file. Again, do NOT hardcode this value into a versions.xml file..
Gradle eg.
dependencies {
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services-gcm:7.5.0'
}