Im making an events app using flutter where the events will be updated directly through appwrite, but users will be able to see the events and add them to their device calendar. I currently have this .setSelfSigned(
status: true); // For self signed certificates, only use for development
Should i set it false when I release the app? What else would I have to ensure so that it works properly. I made an APK build and the downloaded app works and communicates with the database great , so I was wondering if there was any point to setting it false. Some extra context, users of the app dont have to share any information, no login or any other type information.
Need help with SelfSigned. Should I set it to false?
Recommended threads
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- I recently applied for the free plan und...
I recently applied for the free plan under the GitHub Student Developer Pack. However, my billing status still shows $15, and it mentions that this amount will ...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...