在运行Ionic build android时,我遇到了错误。
我尝试将Google服务的版本更改为9.0.0,但在运行版本后,版本将替换为+。
如果这样可行,我可以将我的应用程序发布到谷歌商店,只是坚持这个。
任何帮助将不胜感激。谢谢。
Run with --stacktrace option to get the stack trace. Run with --info or --
debug option to get more log output.
Total time: 2.265 secs
Error:
/Users/User1/Projects/MinuteFormsTabsIonic/platforms/android/gradlew:
Command failed with exit code1 Error output:
失败:构建因异常而失败。
出了什么问题: 任务执行失败':processDebugGoogleServices'。
请通过更新版本来修复版本冲突 google-services插件(有关最新版本的信息是 可在https://bintray.com/android/android-处找到 tools / com.google.gms.google-services /)或更新版本 com.google.android.gms到9.0.0。
尝试: 使用--stacktrace选项运行以获取堆栈跟踪。运行--info或 --debug选项以获得更多日志输出。
在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.android.support:support-v4:24.1.1+"
compile "com.google.firebase:firebase-core:+"
compile "com.google.firebase:firebase-messaging:+"
compile "com.google.android.gms:play-services-auth:+"
compile "com.google.android.gms:play-services-identity:+"
// SUB-PROJECT DEPENDENCIES END
}