我已经尝试了太多的搜索解决方案,但没有解决方案来解决我的问题!
我的应用运行正常,但我想将TextView
中的结果添加到Firebase中。
将Firebase添加到我的Java代码后,应用程序崩溃并显示消息“App Unfotunatlly stopped”,然后我在真实设备上打开应用程序!
这是我添加了Firebase的Java代码:
public class MainActivity extends AppCompatActivity implements LocationListener ,ValueEventListener {
//here is the added firebase that cause the error -_-
FirebaseDatabase database = FirebaseDatabase.getInstance();
private DatabaseReference myRef = database.getReference();
private DatabaseReference buslocationRef = myRef.child("master");
Button getLocationBtn;
TextView locationText, test1;
LocationManager locationManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.activity_main);
...........................
}
}
和我的build.gradle
:
dependencies {
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.google.firebase:firebase-database:12.0.1'
}
另外,我已将Android Studio更新到最新版本3.0 !!
我希望你能帮助我。 在此先感谢。
答案 0 :(得分:0)
尝试在build.gradle(项目版本)中将google-services版本更改为4.2.0。