Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

App Halted #22

Open
Ligmon opened this issue Mar 14, 2022 · 12 comments
Open

App Halted #22

Ligmon opened this issue Mar 14, 2022 · 12 comments

Comments

@Ligmon
Copy link

Ligmon commented Mar 14, 2022

After setup the Firebase, successfully build the project, app will be halted after these pages. How to figure it out? Is that related to the Firebase read/write right?

截屏2022-03-14 下午6 36 54

截屏2022-03-14 下午6 37 26

@Ligmon
Copy link
Author

Ligmon commented Mar 14, 2022

App will stay in the page as below
截屏2022-03-14 下午6 51 00

@Ligmon
Copy link
Author

Ligmon commented Mar 14, 2022

after rebuild the project and run, it will stay in the following page
截屏2022-03-14 下午6 56 39

@vitaliy-paliy
Copy link
Owner

Set Realtime Database rules to:
{ "rules": { ".read": true, ".write": true } }

@Ligmon
Copy link
Author

Ligmon commented Mar 15, 2022

Set Realtime Database rules to:
{ "rules": { ".read": true, ".write": true } }

Thanks for your kind and prompt reply. I have this problem with the following settings:, looking for more of your help

截屏2022-03-14 下午6 17 22

@Ligmon
Copy link
Author

Ligmon commented Mar 15, 2022

I my self also consider this as a problem of database read/write. So where can I got some check points or dash board in Firebase that can help me to locate the problem? thanks for you prompt reply

@vitaliy-paliy
Copy link
Owner

I think this was the issue that didn't allow you to sign up. If that didn't help, try enabling Email/Password authentication method.

@Ligmon
Copy link
Author

Ligmon commented Mar 15, 2022

I still need more help, thanks in advance...The Email/Password authentication has been enabled as below. I am so looking to figure this out.

截屏2022-03-15 下午6 10 56
截屏2022-03-15 下午6 11 10

@Ligmon
Copy link
Author

Ligmon commented Mar 15, 2022

I mean problem still there if enabled the Email/Password authentication.

@Ligmon
Copy link
Author

Ligmon commented Mar 15, 2022

Is it related to the content of pod file? The sentence to specify iOS version is deleted. So the pod is on iOS 13.2 instead of 9.0

@vitaliy-paliy
Copy link
Owner

Try reinstalling the project and follow all of the installation prompts carefully.

@xoojulian
Copy link

@Ligmon Hi, I've met the same problem. Actually, you need to modify the Storage Rule to the following. You can monitor denied operation in the Usage section of the Firebase console.
rules_version = '2'; service firebase.storage { match /b/{bucket}/o { match /{allPaths=**} { allow read, write: if true; } } }
@vitaliy-paliy I have followed the README but it seems that in the Storage section, there's no instruction about permission/rule setting.

@linhnguyen9988
Copy link

@Ligmon Hi, I've met the same problem. Actually, you need to modify the Storage Rule to the following. You can monitor denied operation in the Usage section of the Firebase console.
rules_version = '2'; service firebase.storage { match /b/{bucket}/o { match /{allPaths=**} { allow read, write: if true; } } }
@vitaliy-paliy I have followed the README but it seems that in the Storage section, there's no instruction about permission/rule setting.

edit your Storage Rule to the following
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write;
}
}
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants