You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**This SDK is compatible with Appwrite server version 0.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-flutter/releases).**
10
+
**This SDK is compatible with Appwrite server version 0.9.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-flutter/releases).**
10
11
11
-
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way.
12
-
Use the Flutter SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools.
13
-
For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
12
+
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Flutter SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
14
13
15
14
16
15
@@ -22,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
22
21
23
22
```yml
24
23
dependencies:
25
-
appwrite: ^0.6.4
24
+
appwrite: ^0.7.0
26
25
```
27
26
28
27
You can install packages from the command line:
@@ -57,7 +56,7 @@ The Appwrite SDK uses ASWebAuthenticationSession on iOS 12+ and SFAuthentication
57
56
4. In Deployment Info, 'Target' select iOS 11.0
58
57
59
58
### Android
60
-
In order to capture the Appwrite OAuth callback url, the following activity needs to be added to your [AndroidManifest.xml](https://github.com/appwrite/playground-for-flutter/blob/master/android/app/src/main/AndroidManifest.xml). Be sure to relpace the **[PROJECT_ID]** string with your actual Appwrite project ID. You can find your Appwrite project ID in you project settings screen in your Appwrite console.
59
+
In order to capture the Appwrite OAuth callback url, the following activity needs to be added to your [AndroidManifest.xml](https://github.com/appwrite/playground-for-flutter/blob/master/android/app/src/main/AndroidManifest.xml). Be sure to replace the **[PROJECT_ID]** string with your actual Appwrite project ID. You can find your Appwrite project ID in your project settings screen in the console.
61
60
62
61
```xml
63
62
<manifest>
@@ -82,7 +81,7 @@ While running Flutter Web, make sure your Appwrite server and your Flutter clien
82
81
83
82
### Init your SDK
84
83
85
-
<p>Initialize your SDK code with your project ID, which can be found in your project settings page.
84
+
<p>Initialize your SDK with your Appwrite server API endpoint and project ID, which can be found in your project settings page.
86
85
87
86
```dart
88
87
import 'package:appwrite/appwrite.dart';
@@ -102,7 +101,7 @@ When trying to connect to Appwrite from an emulator or a mobile device, localhos
102
101
103
102
### Make Your First Request
104
103
105
-
<p>Once your SDK object is set, access any of the Appwrite services and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the API References section.
104
+
<p>Once your SDK object is set, access any of the Appwrite services and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the [API References](https://appwrite.io/docs) section.
0 commit comments