Commit 905ef045 by 严久程

flutter埋点的id作md5编码处理

parent d8b01b81
...@@ -50,9 +50,10 @@ ext { ...@@ -50,9 +50,10 @@ ext {
"m-im" : "0.0.6", "m-im" : "0.0.6",
"m-dynamic" : "0.0.2.2", "m-dynamic" : "0.0.2.2",
"m-muse" : "0.0.22", //flutter升级会涉及到以下三个
"m-tests" : "0.0.17", "m-muse" : "0.0.24",
"m-course" : "0.0.36", "m-tests" : "0.0.19",
"m-course" : "0.0.38",
//-------------- 业务模块 API 层 -------------- //-------------- 业务模块 API 层 --------------
"m-audioim-api" : "0.0.5", "m-audioim-api" : "0.0.5",
...@@ -76,7 +77,7 @@ ext { ...@@ -76,7 +77,7 @@ ext {
"ydl-media" : "0.0.15.1", "ydl-media" : "0.0.15.1",
"ydl-pay" : "0.0.12.1", "ydl-pay" : "0.0.12.1",
"m-audioim" : "0.0.41.1", "m-audioim" : "0.0.41.1",
"ydl-flutter-base": "0.0.5.26", "ydl-flutter-base": "0.0.5.28",
//以下 几乎不会动 //以下 几乎不会动
"router" : "0.0.1", "router" : "0.0.1",
...@@ -122,7 +123,7 @@ ext { ...@@ -122,7 +123,7 @@ ext {
"ydl-media" : "0.0.15.1", "ydl-media" : "0.0.15.1",
"ydl-pay" : "0.0.12.1", "ydl-pay" : "0.0.12.1",
"m-audioim" : "0.0.41.1", "m-audioim" : "0.0.41.1",
"ydl-flutter-base": "0.0.5.26", "ydl-flutter-base": "0.0.5.28",
//以下 几乎不会动 //以下 几乎不会动
"router" : "0.0.1", "router" : "0.0.1",
......
...@@ -87,7 +87,7 @@ class YDLCommonPlugin : MethodChannel.MethodCallHandler { ...@@ -87,7 +87,7 @@ class YDLCommonPlugin : MethodChannel.MethodCallHandler {
field.isAccessible = true field.isAccessible = true
val property = field.get(ownerClass) val property = field.get(ownerClass)
if (property is Boolean && property) { if (property is Boolean && property) {
BuryPointHelper.showEditDialog(mActivity, clickPath, null) BuryPointHelper.showEditDialog(mActivity, MD5Util.md5(clickPath), null)
} }
} catch (e: Exception) { } catch (e: Exception) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment