应用构建错误

时间:2016-06-09 07:39:03

标签: android google-analytics-android

在我的Android应用中,我需要使用谷歌分析,下面是我的build.gradle文件

    dependencies {
    compile 'junit:junit:4.12'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.google.android.gms:play-services:9.0.1'
    compile 'com.google.android.gms:play-services-analytics:9.0.1'
    compile 'com.google.code.gson:gson:2.3.1'
    compile files('libs/android-mads-4.5.8.jar')
    compile files('libs/ksoap2-android-assembly-3.3.0-jar-with-dependencies.jar')
    //compile files('libs/libGoogleAnalyticsServices.jar')
    compile files('libs/picasso-2.5.2.jar')
    compile 'com.facebook.android:facebook-android-sdk:4.0.0'

}
apply plugin: 'com.google.gms.google-services'

但我仍然收到以下错误

  

错误:(8,45)错误:包com.google.analytics.tracking.android   不存在

2 个答案:

答案 0 :(得分:0)

请完成此link

您还没有依赖添加Google服务。

com.google.gms:google-services:3.0.0

答案 1 :(得分:0)

将以下依赖项添加到项目级build.gradle文件

classpath 'com.google.gms:google-services:3.0.0'

将插件添加到应用级别build.gradle

的底部
apply plugin: 'com.google.gms.google-services'

现在您应该为Google Play服务添加依赖项 在app level level build.gradle中,添加以下代码

compile 'com.google.android.gms:play-services-analytics:9.0.0'

参考:https://developers.google.com/analytics/devguides/collection/android/v4/#set-up-your-project