Skip to content

Commit

Permalink
Merge pull request #209 from CleverTap/develop
Browse files Browse the repository at this point in the history
Web SDK support in Flutter
  • Loading branch information
KambleSonam authored Dec 15, 2023
2 parents bc45da6 + b48a2fd commit 931df42
Show file tree
Hide file tree
Showing 31 changed files with 10,498 additions and 938 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.packages
.idea/
.DS_Store
.metadata
example/build
example/android/app/google-services.json
build/
build/
36 changes: 36 additions & 0 deletions .metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: "0ddfe9090f67b841a23a5c49dbf270b596ff6aa1"
channel: "master"

project_type: plugin

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1
base_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1
- platform: android
create_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1
base_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1
- platform: ios
create_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1
base_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1
- platform: web
create_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1
base_revision: 0ddfe9090f67b841a23a5c49dbf270b596ff6aa1

# User provided section

# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## CHANGE LOG

### Version 2.0.0 *(15th December 2023)*
-------------------------------------------
**What's new**
* **[iOS Platform]**
* Supports [CleverTap iOS SDK v5.2.2](https://github.com/CleverTap/clevertap-ios-sdk/releases/tag/5.2.2)

* **[Web Platform]**
* Supports [CleverTap Web SDK v1.6.9](https://github.com/CleverTap/clevertap-web-sdk/releases/tag/v1.6.9). Please refer to [Usage-Web.md](https://github.com/CleverTap/clevertap-flutter/blob/master/doc/Usage-Web.md) to integrate and use Clevertap Web SDK in flutter.


### Version 1.9.1 *(20th October 2023)*
-------------------------------------------
**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: 1.9.1
clevertap_plugin: 2.0.0
```
- Run `flutter packages get` to install the SDK
Expand Down
4 changes: 4 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include: package:flutter_lints/flutter.yaml

# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.clevertap.clevertap_plugin'
version '1.9.1'
version '2.0.0'

buildscript {
repositories {
Expand Down
Loading

0 comments on commit 931df42

Please sign in to comment.