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)
@@ -28,19 +30,28 @@ If this is your first time using Appwrite, create an account and create your fir
28
30
Then, under **Add a platform**, add a **Android app** or a **Apple app**. You can skip optional steps.
29
31
30
32
#### iOS steps
31
-
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.
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. For Expo projects you can set or find it on **app.json** file at your project's root directory.
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** file. For Expo projects you can set or find it on **app.json** file at your project's root directory.
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