Требуется помощь в устранении ошибки сборки, с которой я столкнулся на шаге 4. Запись данных из кодовой метки Cloud Firestore Компилятору, кажется, не известно об объекте Restaurant, который определен в приложении> java> папка модели
error: cannot find symbol
CollectionReference restaurants = mFirestore.collection("restaurants");
error: cannot find symbol
Restaurant restaurant = RestaurantUtil.getRandom(this);
^
Вот код из учебника:
private void onAddItemsClicked() {
// Get a reference to the restaurants collection
CollectionReference restaurants = mFirestore.collection("restaurants");
for (int i = 0; i < 10; i++) {
// Get a random Restaurant POJO
Restaurant restaurant = RestaurantUtil.getRandom(this);
// Add a new document to the restaurants collection
restaurants.add(restaurant);
}
}
Спасибо за любые идеи. Вот ссылка на учебник: Codelab Firestore