我試圖添加使用本教程中我的應用程序的谷歌內部分析:gradle在哪裏放「應用插件」?
https://developers.google.com/analytics/devguides/collection/android/v4/
但我stucked上的問題,在這裏正好放線:
apply plugin: 'com.google.gms.google-services'
所以我的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()
}
}
但這是錯誤的。請在哪裏準確地申請插件?
感謝您的任何幫助。