我正在 Android Platform 上创建一个基于地图的应用程序。我在这个项目中使用 Firebase Firestore 作为后端数据库。我想在我的 Firestore 数据库中添加 GeoFire。我在我的 gradle 文件中添加了以下依赖项,以便在我的项目中添加 Firestore 和 GeoFire:
implementation 'com.google.firebase:firebase-core:16.0.4'
implementation 'com.google.firebase:firebase-firestore:17.1.2'
implementation 'com.firebase:geofire-android:2.3.1'
但是在我添加成功后 gradle sync
CollectionReference geoFirestoreRef = FirebaseFirestore.getInstance().collection("my-collection");
GeoFirestore geoFirestore = new GeoFirestore(geoFirestoreRef);
它给出了错误“无法解析 GeoFirestore”