在离子项目中找不到(<android> / <app> /build.gradle)

时间:2017-05-22 15:55:09

标签: android firebase ionic-framework google-cloud-messaging firebase-cloud-messaging

我尝试将Firebase添加到使用ionic构建的Android应用中,firebase的文档https://firebase.google.com/docs/android/setup表示要在我的根级build.gradle上添加此行。

buildscript {
    // ...
    dependencies {
        // ...
        classpath 'com.google.gms:google-services:3.1.0'
    }
}

和我的模块Gradle文件中的这一行(通常是app / build.gradle)。

apply plugin: 'com.android.application'

android {
  // ...
}

dependencies {
  // ...
  compile 'com.google.firebase:firebase-core:10.2.6'

  // Getting a "Could not find" error? Make sure you have
  // the latest Google Repository in the Android SDK manager
}

// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'

但我无法在我的离子项目中找到app / build.gradle。

enter image description here

我在哪里可以找到它?

0 个答案:

没有答案