我正在将Google Analytics添加到我的应用程序中,并且我正在关注官方文档。
将以下行添加到build.gradle:
classpath 'com.google.gms:google-services:2.0.0-beta2'
我收到以下错误消息:
Error:Cause: failed to find target with hash string 'Google Inc.:Google APIs:23' in: C:\Users\MY_USER\AppData\Local\Android\sdk
我的app \ build.gradle:
apply plugin: 'com.google.gms.google-services'
...
android {
compileSdkVersion 'Google Inc.:Google APIs:23'
...
targetSdkVersion 23
从\ build.gradle中删除类路径行会同步项目。
任何建议将不胜感激。
编辑:添加了目标sdk版本
Edit2:根据@Tiem Song的回答,Google Anayltics图书馆似乎没有与Google Inc.合作:Google API:23 仅使用API 23就可以了。
答案 0 :(得分:0)
该行
compileSdkVersion 'Google Inc.:Google APIs:23'
应为:
compileSdkVersion 23