【发布时间】:2018-03-21 04:09:15
【问题描述】:
当我尝试运行命令ionic cordova build android 时出现上述标题错误。然后我尝试删除其中一个gms,当我再次构建时,删除它再次出现。如何解决这个问题?
这是我的 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-auth:+" // i remove this
compile "com.google.android.gms:play-services-identity:+"
compile "com.facebook.android:facebook-android-sdk:4.+"
// SUB-PROJECT DEPENDENCIES END
}
【问题讨论】:
标签: android google-play-services ionic3