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
The Mindbox SDK allows you to integrate mobile push-notifications, in-app messages and client events into your Android projects.
6
+
7
+
## Getting Started
8
+
9
+
These instructions will help you integrate the Mindbox SDK into your Android app.
10
+
11
+
### Installation
12
+
13
+
To integrate Mindbox SDK into your Android app, follow the installation process detailed [here](https://developers.mindbox.ru/docs/androidhuawei-native-sdk). Here is an overview:
14
+
15
+
1. Add Mindbox's Maven repository to your project build.gradle file:
16
+
```markdown
17
+
repositories {
18
+
maven()
19
+
}
20
+
```
21
+
2. Now, add the Mindbox SDK to your app-level build.gradle file:
22
+
```markdown
23
+
dependencies {
24
+
implementation 'cloud.mindbox:mobile-sdk:2.8.3'
25
+
}
26
+
```
27
+
28
+
### Initialization
29
+
30
+
Initialize the Mindbox SDK in your Activity or Application class. Check documentation [here](https://developers.mindbox.ru/docs/android-sdk-initialization) for more details.
31
+
32
+
33
+
### Operations
34
+
35
+
Learn how to send events to Mindbox. Create a new Operation class object and set the respective parameters. Check the [documentation](https://developers.mindbox.ru/docs/android-integration-of-actions) for more details.
36
+
37
+
### Push Notifications
38
+
39
+
Mindbox SDK helps handle push notifications. Configuration and usage instructions can be found in the SDK documentation [here](https://developers.mindbox.ru/docs/huawei-send-push-notifications) and [here](https://developers.mindbox.ru/docs/firebase-send-push-notifications).
40
+
41
+
### Migration
42
+
43
+
If migrating from an older version, follow the instructions [here](https://developers.mindbox.ru/docs/v1-v2-android-sdk) to upgrade to the new version.
44
+
45
+
## Troubleshooting
46
+
47
+
Refer to the [Example of integration](https://github.com/mindbox-cloud/android-sdk/tree/develop/example) in case of any issues.
48
+
49
+
## Further Help
50
+
51
+
Reach out to us for further help and we'll be glad to assist.
52
+
53
+
## License
54
+
55
+
The library is available as open source under the terms of the [License](https://github.com/mindbox-cloud/android-sdk/blob/develop/LICENSE.md).
56
+
57
+
For a better understanding of this content, please familiarize yourself with the Mindbox [Android SDK](https://developers.mindbox.ru/docs/androidhuawei-native-sdk) documentation.
3) Copy the **google-services.json** file (for Firebase) or/and **agcconnect-services.json** file (for Huawei) into the app folder of your project
12
+
13
+
4) Set your domain and endpoint in the [ExampleApplication](https://github.com/mindbox-cloud/android-sdk/blob/develop/example/app/src/main/java/com/mindbox/example/ExampleApplication.kt) class within the configuration builder
14
+
15
+
5) Run the application
16
+
17
+
6) After 5 minutes check your user in your Mindbox admin site
0 commit comments