我按照此链接将Google Analytics添加到我的项目中: https://developers.google.com/analytics/devguides/collection/android/v4/
这是我的项目级build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.google.gms:google-services:3.0.0'
}
}
这是我的模块build.gradle(我把插件放在文件的底部):
dependencies {
compile 'com.google.android.gms:play-services-analytics:9.2.0'
compile 'com.android.support:support-v4:18.0.0'
compile 'com.android.support:appcompat-v7:18.0.0'
compile 'org.quanqi:android-view-pager-indicator:0.9.0'
compile 'com.android.support:recyclerview-v7:+'
compile 'com.makeramen:roundedimageview:2.2.1'
compile 'com.github.bumptech.glide:glide:3.6.1'
}
apply plugin: 'com.google.gms.google-services'
(我正在使用gralde插件v 2.10)
出了什么问题?!!!