File tree Expand file tree Collapse file tree 6 files changed +3769
-31
lines changed Expand file tree Collapse file tree 6 files changed +3769
-31
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.1.3 (2024-11-18)
2
+ * 新增:uniapp 支持 小红书 SDK。
3
+ * 小红书小程序 SDK 版本是 v0.14.3
4
+
5
+ ## 0.1.2 (2023-2-1)
6
+ * 修改:去除了支持 Vue3 点击全埋点的支持说明。不建议使用这个方案,建议手动埋点。
7
+
1
8
## 0.1.1 (2023-12-27)
2
- 新增:获取 identities 和 resetAnonymousIdentity 接口。
9
+ * 新增:获取 identities 和 resetAnonymousIdentity 接口。
3
10
* Web SDK 从 v1.24.13 更新到 v1.26.3
4
11
* 微信小程序 SDK 从 v1.18.4 更新到 v1.20.2
Original file line number Diff line number Diff line change 1
- < img src = " https://ow-file .sensorsdata.cn/www/home/header/sensors_header_icon.svg " width = " 200 " >
2
-
1
+ [ ![ 神策数据 ] ( https://opensource .sensorsdata.cn/wp-content/uploads/logo.png " 神策数据 ")] ( https://www.sensorsdata.cn/ )
2
+ < br >< br >
3
3
[ ![ License] ( https://img.shields.io/github/license/sensorsdata/sa-sdk-android.svg )] ( https://github.com/sensorsdata/sa-sdk-android/blob/master/LICENSE )
4
4
5
5
19
19
20
20
## 新书推荐
21
21
22
- | [ 《数据驱动:从方法到实践》] ( https://item.jd.com/12322322.html ) | [ 《Android 全埋点解决方案》] ( https://item.jd.com/12574672.html ) | [ 《iOS 全埋点解决方案》] ( https://item.jd.com/12867068.html )
23
- | ------ | ------ | ------ |
22
+ | 《ASM 全埋点开发实战》 | 《数据驱动:从方法到实践》 | 《Android 全埋点解决方案》 | 《iOS 全埋点解决方案》
23
+ | ------ | ------ | ------ | ------ |
24
+ | [ ![ 《ASM 全埋点开发实战》] ( https://opensource.sensorsdata.cn/wp-content/uploads/ASM-全埋点thumbnail_1.jpg )] ( https://item.jd.com/14058352.html ) | [ ![ 《数据驱动:从方法到实践》] ( https://opensource.sensorsdata.cn/wp-content/uploads/data_driven_book_1.jpg )] ( https://item.jd.com/12322322.html ) | [ ![ 《Android 全埋点解决方案》] ( https://opensource.sensorsdata.cn/wp-content/uploads/Android-全埋点thumbnail_1.png )] ( https://item.jd.com/12574672.html ) | [ ![ 《iOS 全埋点解决方案》] ( https://opensource.sensorsdata.cn/wp-content/uploads/iOS-全埋点thumbnail_1.png )] ( https://item.jd.com/12867068.html )
24
25
25
26
26
27
## License
27
28
28
- Copyright 2015-2024 Sensors Data Inc.
29
+ Copyright 2015-2023 Sensors Data Inc.
29
30
30
31
Licensed under the Apache License, Version 2.0 (the "License");
31
32
you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change @@ -34,12 +34,17 @@ import bridgeAPI from './middle/baidu.js';
34
34
import bridgeAPI from './middle/toutiao.js' ;
35
35
// #endif
36
36
37
+ // #ifdef MP-XHS
38
+ import bridgeAPI from './middle/xiaohongshu.js' ;
39
+ // #endif
40
+
41
+
37
42
import get_enableVue3MpClick from './vue3-mpclick' ;
38
43
39
44
let sa = { } ;
40
45
41
46
let lib_plugin_track_timer = 0 ;
42
- let js_uniapp_version = 'js_uniapp:0.1.1 ' ;
47
+ let js_uniapp_version = 'js_uniapp:0.1.3 ' ;
43
48
44
49
//检查是否是支持的平台,如果不支持就使用commonAPI
45
50
if ( typeof bridgeAPI === 'undefined' ) {
@@ -49,8 +54,8 @@ if (typeof bridgeAPI === 'undefined') {
49
54
sa = bridgeAPI ;
50
55
/*
51
56
做一次common-api的遍历
52
- 如果bridgeAPI都实现了,就结束
53
- 如果bridgeAPI没有实现,从instance中获取,如果还没有就=common-api
57
+ 如果bridgeAPI都实现了,就结束
58
+ 如果bridgeAPI没有实现,从instance中获取,如果还没有就=common-api
54
59
*/
55
60
Object . keys ( commonAPI ) . forEach ( ( key ) => {
56
61
if ( ! ( key in bridgeAPI ) ) {
You can’t perform that action at this time.
0 commit comments