我正在开发一个 android 应用程序,并在GeoFire
其中使用库。
我已经按照最新版本更新了我的所有代码Firebase
,但是我未能更新GeoFire
到导致代码冲突的最新版本。
即使在geofire的 github 网站上,也没有这样的信息。
使用旧版 geofire 运行应用程序时,出现此错误:Caused by: java.lang.RuntimeException: You need to set the Android context using Firebase.setAndroidContext() before using Firebase.
在此行geoFire = new GeoFire(new Firebase("https://appname.firebaseio.com/appDetails/"));
再次添加Firebase.setAndroidContext(this);
后,我收到此错误:Caused by: java.lang.RuntimeException: Android classes not found. Are you using the firebase-client-android artifact?
如何更新到最新版本GeoFire
?
请告诉我。