Skip to content

Commit 44cdff7

Browse files
author
UnnatiCP
committed
Update Android, iOS, Flutter SDK version
Update Android, iOS, Flutter SDK version
1 parent 2950f45 commit 44cdff7

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/sdks/android/methods.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: Methods
99

1010
To initialize the CleverPush SDK, use the following method.
1111

12-
CLEVERPUSH_CHANNEL_ID (String): Your unique CleverPush channel ID. This ID is required to link the app with your CleverPush account.
12+
**CLEVERPUSH_CHANNEL_ID (String):** Your unique CleverPush channel ID. This ID is required to link the app with your CleverPush account.
1313

1414
<!--DOCUSAURUS_CODE_TABS-->
1515

@@ -38,11 +38,11 @@ class MainActivity:Activity() {
3838

3939
You can add a `NotificationReceivedListener` and a `NotificationOpenedListener` and a `SubscribedListener`
4040

41-
NotificationReceivedListener: A listener that handles the event when a notification is received. The notificationReceived method is triggered with a NotificationOpenedResult object containing the details of the received notification. It fires when notifications have been received.
41+
**NotificationReceivedListener:** A listener that handles the event when a notification is received. The notificationReceived method is triggered with a NotificationOpenedResult object containing the details of the received notification. It fires when notifications have been received.
4242

43-
NotificationOpenedListener: A listener that handles the event when a notification is opened. The notificationOpened method is triggered with a NotificationOpenedResult object containing the details of the opened notification. It fires when notifications have been opened.
43+
**NotificationOpenedListener:** A listener that handles the event when a notification is opened. The notificationOpened method is triggered with a NotificationOpenedResult object containing the details of the opened notification. It fires when notifications have been opened.
4444

45-
SubscribedListener: A listener that handles the event when a user subscribes. The subscribed method is triggered with the subscriptionId. it fires when the user has successfully been subscribed.
45+
**SubscribedListener:** A listener that handles the event when a user subscribes. The subscribed method is triggered with the subscriptionId. it fires when the user has successfully been subscribed.
4646

4747
<!--DOCUSAURUS_CODE_TABS-->
4848

@@ -92,9 +92,9 @@ class MainActivity:Activity() {
9292

9393
<!--END_DOCUSAURUS_CODE_TABS-->
9494

95-
You can set autoRegister.
95+
You can set **`autoRegister`**.
9696

97-
autoRegister: The autoRegister parameter controls whether the CleverPush SDK will automatically attempt to subscribe the user upon the first launch of the app. In the below example, autoRegister is set to true. This means that the CleverPush SDK will automatically try to subscribe the user when they first launch the app. If you later call unsubscribe(), the SDK will not automatically try to subscribe the user again. You would need to call subscribe() manually to resubscribe the user.
97+
**autoRegister:** The autoRegister parameter controls whether the CleverPush SDK will automatically attempt to subscribe the user upon the first launch of the app. In the below example, autoRegister is set to true. This means that the CleverPush SDK will automatically try to subscribe the user when they first launch the app. If you later call unsubscribe(), the SDK will not automatically try to subscribe the user again. You would need to call subscribe() manually to resubscribe the user.
9898

9999
By default, the autoRegister parameter in the SDK is set to true. This ensures that new users are automatically subscribed unless explicitly specified otherwise.
100100

@@ -151,15 +151,15 @@ class MainActivity:Activity() {
151151

152152
<!--END_DOCUSAURUS_CODE_TABS-->
153153

154-
You can add a `InitializeListener`
154+
You can add a **`InitializeListener`**
155155

156156
The `InitializeListener` handles the initialization status of the CleverPush SDK. It provides methods that are called at different stages of the initialization process, allowing developers to respond accordingly. Can get notified if the initialization was successful or if it failed,
157157

158-
onInitialized(): This method is called when the initialization process starts. Logs that the initialization process has started.
158+
**onInitialized():** This method is called when the initialization process starts. Logs that the initialization process has started.
159159

160-
onInitializationSuccess(): This optional method is called when the initialization is successful. You can override this method to handle the initialization success. Logs that the initialization was successful.
160+
**onInitializationSuccess():** This optional method is called when the initialization is successful. You can override this method to handle the initialization success. Logs that the initialization was successful.
161161

162-
onInitializationFailure(Throwable throwable): This optional method is called when the initialization fails. You can override this method to handle the initialization failure. Logs the error message and details if the initialization fails.
162+
**onInitializationFailure(Throwable throwable):** This optional method is called when the initialization fails. You can override this method to handle the initialization failure. Logs the error message and details if the initialization fails.
163163

164164
<!--DOCUSAURUS_CODE_TABS-->
165165

docs/sdks/android/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ You can find the newest sdk version number here [Android SDK](https://github.com
2121
```groovy
2222
dependencies {
2323
// ...
24-
implementation 'com.cleverpush:cleverpush:1.35.13'
24+
implementation 'com.cleverpush:cleverpush:1.35.16'
2525
}
2626
```
2727

docs/sdks/flutter/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Setup
88
1. Add the following code to your `pubspec.yaml` file
99
```bash
1010
dependencies:
11-
cleverpush_flutter: ^1.24.25
11+
cleverpush_flutter: ^1.24.26
1212
```
1313

1414
2. Run `flutter packages get`

docs/sdks/ios/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ title: Setup
1919
Add CleverPush to your Podfile:
2020

2121
```bash
22-
pod 'CleverPush', '~> 1.34.28'
22+
pod 'CleverPush', '~> 1.34.32'
2323
```
2424

2525
#### Swift Package Manager Setup

0 commit comments

Comments
 (0)