Skip to content

Commit 15c3290

Browse files
author
weiqiangliu
committed
Release 2.3.0
1 parent 867e779 commit 15c3290

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.3.0
2+
3+
* 支持 Flutter 项目可视化全埋点及自定义属性
4+
15
## 2.2.2
26

37
* 新增接口 bind、unbind、loginWithKey

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
```yml
1818
dependencies:
1919
# 添加神策 flutter plugin
20-
sensors_analytics_flutter_plugin: ^2.2.2
20+
sensors_analytics_flutter_plugin: ^2.3.0
2121
```
2222
2323
执行 flutter packages get 命令安装插件

android/build.gradle

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ buildscript {
55
repositories {
66
google()
77
mavenCentral()
8-
maven {
9-
url '/Users/zhangwei/Documents/work/android_workspace/sa-sdk-android/repo'
10-
}
118
}
129

1310
dependencies {
@@ -19,10 +16,6 @@ rootProject.allprojects {
1916
repositories {
2017
google()
2118
mavenCentral()
22-
maven {
23-
url '/Users/zhangwei/Documents/work/android_workspace/sa-sdk-android/repo'
24-
}
25-
2619
}
2720
}
2821

@@ -41,7 +34,6 @@ android {
4134

4235
dependencies {
4336
implementation fileTree(dir: 'libs', include: ['*.jar'])
44-
// api files('libs/SensorsAnalyticsSDK-6.3.5.2.aar')
45-
api 'com.sensorsdata.analytics.android:SensorsAnalyticsSDK:6.5.3-build1'
37+
api 'com.sensorsdata.analytics.android:SensorsAnalyticsSDK:6.6.0'
4638
// implementation 'org.json:json:20220320'
4739
}

ios/sensors_analytics_flutter_plugin.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'sensors_analytics_flutter_plugin'
6-
s.version = '2.2.2'
6+
s.version = '2.3.0'
77
s.summary = 'A new flutter plugin project.'
88
s.description = <<-DESC
99
A new flutter plugin project.
@@ -16,7 +16,7 @@ A new flutter plugin project.
1616
s.public_header_files = 'Classes/**/*.h'
1717
s.dependency 'Flutter'
1818
s.platform = :ios, '8.0'
19-
s.dependency 'SensorsAnalyticsSDK', ">= 4.4.6"
19+
s.dependency 'SensorsAnalyticsSDK', ">= 4.5.0"
2020
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
2121
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
2222
end

lib/sensors_analytics_flutter_plugin.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class VisualizedConfig {
3737

3838
// This is the official Flutter Plugin for Sensors Analytics.
3939
class SensorsAnalyticsFlutterPlugin {
40-
static const String FLUTTER_PLUGIN_VERSION = "2.2.2";
40+
static const String FLUTTER_PLUGIN_VERSION = "2.3.0";
4141
static bool hasAddedFlutterPluginVersion = false;
4242

4343
static Future<String?> get getDistinctId async {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sensors_analytics_flutter_plugin
22
description: This is the official flutter plugin for Sensors Analytics,with this plugin you can easily collect your app data on Android and iOS.
3-
version: 2.2.2
3+
version: 2.3.0
44
homepage: "https://github.com/sensorsdata/sensors_analytics_flutter_plugin"
55

66
environment:

0 commit comments

Comments
 (0)