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 1.4.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-react-native/releases).**
9
+
**This SDK is compatible with Appwrite server version 1.5.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-react-native/releases).**
10
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. Use the React Native 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)
@@ -31,16 +33,25 @@ Then, under **Add a platform**, add a **Android app** or a **Apple app**. You ca
31
33
Add your app **name** and **Bundle ID**. You can find your **Bundle Identifier** in the **General** tab for your app's primary target in XCode.
32
34
33
35
#### Android steps
34
-
Add your app's **name** and **package name**, Your package name is generally the **applicationId** in your app-level `build.gradle` file.
36
+
Add your app's **name** and **package name**, Your package name is generally the **applicationId** in your app-level [build.gradle](https://github.com/appwrite/playground-for-flutter/blob/master/android/app/build.gradle#L41) file.
35
37
36
38
## Setup
37
39
40
+
On `index.js` add import for `react-native-url-polyfill`
41
+
42
+
```
43
+
import 'react-native-url-polyfill/auto'
44
+
```
45
+
46
+
> If you are building for iOS, don't forget to install pods
47
+
> `cd ios && pod install && cd ..`
48
+
38
49
### Init your SDK
39
50
Initialize your SDK with your Appwrite server API endpoint and project ID which can be found in your project settings page.
This library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.
101
113
102
114
## License
103
-
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.
115
+
116
+
Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.
0 commit comments