无法在类路径上获取Firebase实时数据库附加组件的类

时间:2016-07-18 21:59:17

标签: android android-studio gradle firebase firebase-realtime-database

我无法让Realtime Database插件工作。 此程序包中的类(即com.google.firebase.database。*)不会出现在类路径中。其他附加组件不受影响。 我现在尝试了3个项目,其中一个来自https://firebase.google.com/docs/samples/的quickstart-android示例项目(我做的唯一更改是将google-services.json放入./app文件夹) 它对我来说似乎是一个错误,但我没有找到任何其他来源报告此问题。

Classes missing and not classes listed in the library section 的build.gradle:

HWND

./应用程序/的build.gradle:

buildscript {
  repositories {
    jcenter()
    mavenLocal()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:2.1.2'
    classpath 'com.google.gms:google-services:3.0.0'
  }
}

allprojects {
  repositories {
    jcenter()
    maven { url 'https://maven.fabric.io/public' }
    mavenLocal()
  }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

到目前为止我尝试了什么:

  • 重新安装了Android支持存储库,Google存储库,Play服务
  • 升级到最新的SDK
  • 清洁项目,重建项目
  • 重新启动Windows和Android Studio

需要注意的事项:

  • 我没有达到65336方法限制(How to shrink code - 65k method limit in dex
  • 与其他库相比,firebase-database库导入(参见图像)下方缺少的包层次结构
  • google-services.json不包含有关实时数据库的任何明显信息(尽管我在Firebase控制台中配置了数据库)并对其进行了重新编码。我不确定是否应该有关于它的信息(文件来自我的项目,而不是来自样本):

谷歌services.json:

apply plugin: 'com.android.application'

android {
   compileSdkVersion 24
   buildToolsVersion "24.0.1"

   defaultConfig {
     applicationId "com.google.firebase.quickstart.database"
     minSdkVersion 9
     targetSdkVersion 24
     versionCode 1
     versionName "1.0"
   }

   buildTypes {
     release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        signingConfig signingConfigs.debug
     }
   }
 }

dependencies {
  testCompile 'junit:junit:4.12'
  compile 'com.android.support:appcompat-v7:24.1.0'
  compile 'com.android.support:recyclerview-v7:24.1.0'
  compile 'com.android.support:cardview-v7:24.1.0'
  compile 'com.android.support:design:24.1.0'

  compile 'com.firebaseui:firebase-ui-database:0.4.0'

  compile 'com.google.firebase:firebase-auth:9.2.1'
  compile 'com.google.firebase:firebase-database:9.2.1'
}

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

可能是什么问题以及如何进行诊断?

0 个答案:

没有答案