Skip to content

Commit 4257baf

Browse files
authored
MBX-3120: Updating README.md (#68)
Update README.md
1 parent 38b5d8a commit 4257baf

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,6 @@ jobs:
140140
release_name: mindbox v${{ env.VERSION }}
141141
draft: false
142142
prerelease: false
143+
144+
- name: Version Upgrade
145+
run: ./version-update.sh "${{ env.VERSION }}"

README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[![PubDev](https://img.shields.io/pub/v/mindbox)](https://pub.dev/packages/mindbox)
2+
3+
# Mindbox SDK for Flutter
4+
5+
The Mindbox SDK allows you to integrate mobile push-notifications, in-app messages and client events into your Flutter projects.
6+
7+
## Getting Started
8+
9+
These instructions will help you integrate the Mindbox SDK into your Flutter app.
10+
11+
### Installation
12+
13+
To integrate Mindbox SDK into your Flutter app, follow the installation process detailed [here](https://developers.mindbox.ru/docs/add-sdk-flutter). Here is an overview:
14+
15+
Add Mindbox's dependency to your pubspec.yaml file:
16+
```markdown
17+
dependencies:
18+
flutter:
19+
sdk: flutter
20+
mindbox: ^2.8.2
21+
```
22+
23+
### Initialization
24+
25+
Initialize the Mindbox SDK in your Activity or Application class. Check documentation [here](https://developers.mindbox.ru/docs/sdk-initialization-flutter) for more details.
26+
27+
### Operations
28+
29+
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/integration-actions-flutter) for more details.
30+
31+
### Push Notifications
32+
33+
Mindbox SDK helps handle push notifications. Configuration and usage instructions can be found in the SDK documentation [here](https://developers.mindbox.ru/docs/firebase-send-push-notifications-flutter), [here](https://developers.mindbox.ru/docs/huawei-send-push-notifications-flutter) and [here](https://developers.mindbox.ru/docs/ios-send-push-notifications-flutter).
34+
35+
## Troubleshooting
36+
37+
Refer to the [Example of integration(IOS)](https://github.com/mindbox-cloud/flutter-sdk/tree/develop/mindbox_ios/example) or [Example of integration(Android)](https://github.com/mindbox-cloud/flutter-sdk/tree/develop/mindbox_android/example) in case of any issues.
38+
39+
## Further Help
40+
41+
Reach out to us for further help and we'll be glad to assist.
42+
43+
## License
44+
45+
The library is available as open source under the terms of the [License](https://github.com/mindbox-cloud/android-sdk/blob/develop/LICENSE.md).
46+
47+
For a better understanding of this content, please familiarize yourself with the Mindbox [Flutter SDK](https://developers.mindbox.ru/docs/flutter-sdk-integration) documentation.

version-update.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
VERSION=$1
3+
sed -i -e "s|mindbox: ^[0-9].[0-9].[0-9]|mindbox: ^${VERSION}|" README.md

0 commit comments

Comments
 (0)