I did. I followed the documentation
In android, did you have added internet access label to your android manifest file?
Yes
maybe you can try a simple http request to google or something else to confirm you have internet access
I already figured out the problem.thanks for your assistance. Really appreciate
And the problem was?
The problem was my version of flutter..I finally say a github thread of people with similar problem using flutter 3.13.*
All i needed to do was upgrade
Saw**
Oh, so that solved the issue?
Yes
Wow how annoying
Didn't knew that. Glad to hear it's solved <:appwriteparty:946072712915341333>
Spent yesterday looking for a solution...if I had just took my time I might have found out sooner 😁
[SOLVED] socket exception error
hey @R2 I have the same issue but a new flutter version did not solve it. Could it be an Appwrite thing because I'm having doubts
@D5 This is the code that triggers the err:
Future<List<Document>> getNotes() async {
DocumentList allNotes = await appwriteDatabase.listDocuments(
databaseId: dojoDatabaseId,
collectionId: noteCollectionId,
queries: [
Query.select([
'subject',
'description',
'date',
'id',
//Permission is tijdelijk vanwege een bug in de SDK
'\$permissions'
]),
Query.orderDesc('date'),
],
);
return allNotes.documents;
}
the await listDocuments triggers it and crashes the app
Could you please create an issue for this?
Also if you're using cloud, it's down so you will need to wait
It's selfhosted but I tried on cloud and it gives the same err
Can you explain how I should do that?
I'm the <#1072905050399191082> channel, click the + button located in the bottom down corner of the screen and then add all details and at least one tag/label to the issue
I don't see a + button in the bottom right. Do you mean by any chance that I should make a new post about this?
Sent you a DM
Recommended threads
- Which flutter SDK version for Self Hoste...
Hi all, Is there a good way to figure out which version of flutter SDK and Dart SDK is current for latest available self-hosted 1.8.0 ? I know new features are...
- Bug Report: Crash when trying to createR...
https://github.com/appwrite/sdk-for-android/issues/96 I think the bug is related with this one https://discord.com/channels/564160730845151244/1443887021314539...
- redirect_uri errors on flutter client
Hi all, I'm using the flutter client for my app to do appwrite auth and use the JWTs to send to my backend. When I try to sign in with SSO, I get this: https:/...