everyone. I make one hybride app for IOS . I use Framework7 with Cordova. If I use only Cordova, it can reach my firestore. But if I use Cordova + Framework7 CLI, it can't see firestore.
In Xcode, I see this fault.
@firebase/firestore: Firestore (7.8.2): Could not reach Cloud Firestore backend. Backend didn't respond within 10 seconds. This typically indicates that your device does not have a healthy Internet connection at the moment. The client will operate in offline mode until it is able to successfully connect to the backend.
Here is rules.
service cloud.firestore {
match /databases/{database}/documents {
// This rule allows anyone on the internet to view, edit, and delete
// all data in your Firestore database. It is useful for getting
// started, but it is configured to expire after 30 days because it
// leaves your app open to attackers. At that time, all client
// requests to your Firestore database will be denied.
//
// Make sure to write security rules for your app before that time, or else
// your app will lose access to your Firestore database
match /{document=**} {
allow read, write;
}
}
}
What is problem?
Can you help, please ?
Thank you.