我正在开发一个Firebase应用程序,我必须将内容保存到Firebase中的实时数据库中。我在logcat中说了一个错误
“ 原因:java.lang.IllegalStateException:在此过程com.example.myfirebase中未初始化默认的FirebaseApp。确保首先调用FirebaseApp.initializeApp(Context)。”
即使在初始化FirebaseApp之后,我的应用也会崩溃。请帮帮我。
package com.example.myfirebase;
import android.content.Context;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import com.google.firebase.FirebaseApp;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
public class MainActivity extends AppCompatActivity {
private EditText name,email;
private Button save;
DatabaseReference databaseReference;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
name = (EditText) findViewById(R.id.editText3);
email = (EditText) findViewById(R.id.editText4);
save = (Button) findViewById(R.id.button);
FirebaseApp.initializeApp(this);
databaseReference = FirebaseDatabase.getInstance().getReference().child("Users");
save.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
AddData();
}
});
}
public void AddData(){
String Name = name.getText().toString().trim();
String Email = email.getText().toString().trim();
SaveData saveData = new SaveData(Name,Email);
databaseReference.setValue(saveData);
}
}
我想将内容保存到数据库中。
答案 0 :(得分:1)
更新firebase的项目级别gradle文件类路径:-
classpath 'com.google.gms:google-services:4.2.0'
答案 1 :(得分:1)
请尝试:
在您的应用程序类中添加FirebaseApp.initializeApp(this);
,而不在Activity
中添加
创建类扩展Application
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
FirebaseApp.initializeApp(this);
}
}
在Android清单中:
<application
android:name=".MyApplication">
</application>
答案 2 :(得分:0)
您是否正在使用没有Google Play服务的设备,或者没有将com.google.gms:google-services添加到您的项目中?
This page似乎表明,如果您不使用Google Play服务,就会在Flutter应用中遇到该错误,所以对您来说可能相同。