android – gradle究竟要放“apply plugin”?

前端之家收集整理的这篇文章主要介绍了android – gradle究竟要放“apply plugin”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用本教程在我的应用程序中添加Google分析: @H_404_2@https://developers.google.com/analytics/devguides/collection/android/v4/

@H_404_2@但我坚持这个问题,在哪里准确地说:

apply plugin: 'com.google.gms.google-services'
@H_404_2@所以我的build.gradle顶级文件看起来像这样:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'com.google.gms:google-services:1.3.0-beta1'
        apply plugin: 'com.google.gms.google-services'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}
@H_404_2@但这是错误的.请问应该在哪里申请插件

@H_404_2@谢谢你的帮助.

解决方法

在andriod工作室你有这种结构:
root
   build.gradle
   app
      build.gradle
@H_404_2@在顶级build.gradle中,您有:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'com.google.gms:google-services:1.3.0-beta1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}
@H_404_2@在你的app / build.gradle中

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

 //...


dependencies{
   //.....
   compile 'com.google.android.gms:play-services-analytics:7.3.0'
}
原文链接:https://www.f2er.com/android/314736.html

猜你在找的Android相关文章