rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write;
}
}
}
Код с ошибкой представлен в самом вопросе, а если конкретнее, то не работает вот эта часть:
val user = makeUser(fullname, email)
val reference = mDatabase.child("users").child(it.result!!.user!!.uid)
reference.setValue(user).addOnCompleteListener {
if (it.isSuccessful) {
startHomeActivity()
} else {
Log.e(TAG, "Failed to create user profile", it.exception)
showToast("Something wrong happened. Please try again later")
}
}
Александр Земляной, сначала - это с какого момента? Я пытался в новой папке, по новому, скопировав нужные мне файлы(раз 7 наверное уже, разными способами). А возможности создать другой репозиторий - нет.
Александр Земляной, fatal: refusing to merge unrelated histories - вот что выдаёт git pull origin master .
А как тогда мне проверить, что файлы успешно загружены на сервер(доступа через браузер/что-то ещё нет)
Вот что мне пишет после пятого шага. Не уверен, что это означает, что у меня всё верно сработало:
vogsphere: (INFO) Transaction ID : 93f3250b-3d90-4c43-b841-c65aa0987800
vogsphere: (INFO) Please mention this ID in any ticket you create concerning this transaction
vogsphere: (INFO) This transaction has been started at 2018-10-15 22:03:38, server time.
vogsphere: (INFO) Rights will be determined using this time, so do NOT cut the connection.
vogsphere: (INFO) It appears you are gmarquar. If that's not true, check your Kerberos tickets (klist)
vogsphere: (INFO) You have read and write rights on this repository
<ссылка на репозиторий>
! [rejected] master -> master (fetch first)
error: failed to push some refs to '<ссылка на репозиторий>'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
Код с ошибкой представлен в самом вопросе, а если конкретнее, то не работает вот эта часть: