我是ionic的新手。我目前正在使用ionic 3应用程序。我正在我的应用程序中处理推送通知,但是在安装了push插件并编写了代码之后,当我运行我的应用程序时会发生此错误。我从堆栈溢出尝试了许多解决方案,但是没有一个对我有用。 请帮我。
这是我的build.gradle依赖项
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
// SUB-PROJECT DEPENDENCIES START
debugCompile(project(path: "CordovaLib", configuration: "debug"))
releaseCompile(project(path: "CordovaLib", configuration: "release"))
compile "com.google.android.gms:play-services-base:11.0.4"
compile "com.google.android.gms:play-services-ads:11.0.4"
compile "com.android.support:support-v4:24.1.1+"
compile "com.android.support:support-v13:26.+"
compile "me.leolin:ShortcutBadger:1.1.17@aar"
compile "com.google.firebase:firebase-messaging:11.6.2"
// SUB-PROJECT DEPENDENCIES END
}