将Google Analytics添加到Android项目 - 错误:无法加载“com.google.gson.JsonObject”类

时间:2016-07-17 10:48:09

标签: android android-studio gradle google-analytics android-gradle

我按照此链接将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'

我一步一步地跟着链接,但是我收到了这个错误: enter image description here

(我正在使用gralde插件v 2.10)

出了什么问题?!!!

0 个答案:

没有答案