Skip to content

Commit

Permalink
Merge pull request #257 from CleverTap/develop
Browse files Browse the repository at this point in the history
Flutter SDK Release v2.4.1
  • Loading branch information
KambleSonam authored Sep 2, 2024
2 parents 96922e4 + 5f48e25 commit 0f8c3e9
Show file tree
Hide file tree
Showing 24 changed files with 4,153 additions and 4,301 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
## CHANGE LOG

### Version 2.4.1 *(2nd September 2024)*
-------------------------------------------
**Bug Fixes**
* **[Web Platform]**
* Adds the method 'addKVDataChangeListener()' to get the custom KV Pair data
* Supports [CleverTap Web SDK v1.9.1](https://github.com/CleverTap/clevertap-web-sdk/releases/tag/v1.9.1)

* **[Android Platform]**
* Fixes a date conversion issue for dates before January 1, 1970.
* Fixes a `ClassCastException` for `setMinimumFetchIntervalInSeconds` in `ProductConfig`.
* Fixes the missing support for `profileGetProperty`.

* **[iOS Platform]**
* Fixes iOS platform channel messages must be sent on the platform thread issue.
* Fixes the missing support for `profileGetProperty`.

### Version 2.4.0 *(10th May 2024)*
-------------------------------------------
**What's new**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To get started, sign up [here](https://clevertap.com/live-product-demo/).

```yaml
dependencies:
clevertap_plugin: 2.4.0
clevertap_plugin: 2.4.1
```
- Run `flutter packages get` to install the SDK
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'com.clevertap.clevertap_plugin'
version '2.4.0'
version '2.4.1'

rootProject.allprojects {
repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,7 @@ private void setLocation(MethodCall call, Result result) {
}

private void setMinimumFetchIntervalInSeconds(MethodCall call, Result result) {
long interval = call.argument("interval");
int interval = call.argument("interval");
if (isCleverTapNotNull(cleverTapAPI)) {
cleverTapAPI.productConfig().setMinimumFetchIntervalInSeconds(interval);
result.success(null);
Expand Down
Loading

0 comments on commit 0f8c3e9

Please sign in to comment.