Неудачная инициализация FirebaseApp - ошибка приложения, вызывающего сбой - PullRequest
0 голосов
/ 17 марта 2019

В моей основной Деятельности сразу после того, как я пытаюсь инициализировать две ссылки, это терпит крах, только чтобы обнаружить ошибку "Неудачная инициализация FirebaseApp"

private StorageReference mStorageReference; private DatabaseReference mDatabaseReference; mStorageReference = FirebaseStorage.getInstance().getReference("uploads"); mDatabaseReference = FirebaseDatabase.getInstance().getReference("uploads");

существует некоторый код между частным объявлением и самим кодом, но это не относится к этой проблеме

Манифест:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.firebase10">

<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.INTERNET"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

build.gradle (проект):

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

allprojects {
      repositories {
      google()
      jcenter()
     }  
}
task clean(type: Delete) {
   delete rootProject.buildDir
}

build.gradle (приложение):

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

android {
      compileSdkVersion 28
      defaultConfig {
      applicationId "com.example.firebase10"
      minSdkVersion 19
      targetSdkVersion 28
      versionCode 1
      versionName "1.0"
      testInstrumentationRunner 
      "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android- 
        optimize.txt'), 'proguard-rules.pro'
        }
    }
 }

dependencies {
     api "com.google.android.gms:play-services-base:15.0.1"
     api "com.google.android.gms:play-services-auth:16.0.0"
     api "com.google.android.gms:play-services-identity:15.0.1"
     implementation fileTree(dir: 'libs', include: ['*.jar'])
     implementation 'com.android.support:appcompat-v7:28.0.0'
     implementation "com.android.support:customtabs:28.0.0"
     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
     implementation 'com.google.firebase:firebase-database:16.0.1'
     implementation 'com.google.firebase:firebase-storage:16.0.1'
     implementation 'com.google.firebase:firebase-auth:16.0.3'
     implementation 'com.android.support:recyclerview-v7:28.0.0'
     implementation 'com.android.support:cardview-v7:28.0.0'
     implementation 'com.squareup.picasso:picasso:2.71828'
     implementation 'com.google.gms:google-services:4.2.0'
     testImplementation 'junit:junit:4.12'
     androidTestImplementation 'com.android.support.test:runner:1.0.2'
     androidTestImplementation 'com.android.support.test.espresso:espresso- 
     core:3.0.2'
}

Я все настроил с помощью Tools-Firebase, и я знаю, что код выглядит так, как будто он склеен, так как он есть. Я просматривал темы и только что добавил, но ничего не получалось Если это имеет значение, я запускаю приложение на своем телефоне, а не на эмуляторе.

Ответы [ 3 ]

0 голосов
/ 02 апреля 2019

В build.gradle (Project) я изменил 'com.google.gms: google-services: 4.1.0' На 'com.google.gms: google-services: 4.2.0 ' и проблема решена

0 голосов
/ 02 апреля 2019

Этот здесь не имеет смысла, потому что это плагин Gradle:

dependencies {
    implementation 'com.google.gms:google-services:4.2.0'
}

И этот принадлежит нижней части файла:

apply plugin: 'com.google.gms.google-services'
0 голосов
/ 17 марта 2019

Правильно ли настроен ваш файл google-json?

Также Firebase требуется время для подключения к этому серверу и предоставления вам экземпляра, относящегося к вашему устройству, предоставления ему времени или использования обещания, чтобы убедиться, что firebase подключен к этому серверу и создан экземпляр, а затем выполните действие, которое необходимо пожарная база

...