以下から分析サンプル アプリをダウンロードしてコンパイルしました。
https://developers.google.com/analytics/devguides/collection/android/v4/start
構成ファイルを次の場所にダウンロードして保存しました。
app\google-services.json
ビルドすると、次のようになります。
Error:Execution failed for task ':app:processDebugGoogleServices'.
> No matching client found for package name
'com.google.samples.quickstart.analytics'
ファイル: 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:2.0.0'
classpath 'com.google.gms:google-services:2.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
ファイル: build.gradle (モジュール: app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.google.samples.quickstart.analytics"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt')
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:support-v4:23.2.0'
// [START gms_compile]
compile 'com.google.android.gms:play-services-analytics:8.4.0'
// [END gms_compile]
}
apply plugin: 'com.google.gms.google-services'
私は何が欠けていますか?
私の目標は、サンプル アプリを実行し、Android アプリでアクションが実行されたときに、Google アナリティクスの Web サイトに何らかのアクティビティが表示されることを確認することです。
前もって感謝します、