Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YDL-Component-Medical
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨凯
YDL-Component-Medical
Commits
00cff53d
Commit
00cff53d
authored
Jul 14, 2022
by
刘鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 1.倾诉咨询云信唤起两个界面问题修复。2.埋点sing1取name 3.云信启动模式更改
parent
9a9e0176
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
10 deletions
+9
-10
config.gradle
config.gradle
+1
-1
BigShotOneView.kt
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/BigShotOneView.kt
+1
-1
BigShotThreeView.kt
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/BigShotThreeView.kt
+3
-3
BigShotTwoView.kt
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/BigShotTwoView.kt
+2
-2
RecommendItemView.kt
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/RecommendItemView.kt
+1
-1
AndroidManifest.xml
m-im/src/main/AndroidManifest.xml
+1
-1
AVChatProfile.java
m-im/src/main/java/com/yidianling/avchatkit/AVChatProfile.java
+0
-1
No files found.
config.gradle
View file @
00cff53d
ext
{
dev_mode
=
false
//组件发布的时候需要设置为false
ydl2PublishVersion
=
"0.2.0.
9
"
ydl2PublishVersion
=
"0.2.0.
13
"
ydlPublishVersion
=
[
// -------------- 业务模块 --------------
//第三步 若干
...
...
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/BigShotOneView.kt
View file @
00cff53d
...
...
@@ -56,7 +56,7 @@ class BigShotOneView : LinearLayout {
NewH5Activity
.
start
(
context
,
h5Params
)
ActionCountUtils
.
count
(
ConsultBIConstants
.
PART_ID_CONSULT_COUNSELOR_LIST_PAGE
+
"|"
+
ConsultBIConstants
.
POSITION_CONSULT_COUNSELOR_LIST_BANNER_CLICK
,
bean
.
specialTopic
Titl
e
bean
.
specialTopic
Nam
e
)
}
}
...
...
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/BigShotThreeView.kt
View file @
00cff53d
...
...
@@ -60,7 +60,7 @@ class BigShotThreeView : LinearLayout {
NewH5Activity
.
start
(
context
,
h5Params
)
ActionCountUtils
.
count
(
ConsultBIConstants
.
PART_ID_CONSULT_COUNSELOR_LIST_PAGE
+
"|"
+
ConsultBIConstants
.
POSITION_CONSULT_COUNSELOR_LIST_BANNER_CLICK
,
bean1
.
specialTopic
Titl
e
bean1
.
specialTopic
Nam
e
)
}
...
...
@@ -70,7 +70,7 @@ class BigShotThreeView : LinearLayout {
NewH5Activity
.
start
(
context
,
h5Params
)
ActionCountUtils
.
count
(
ConsultBIConstants
.
PART_ID_CONSULT_COUNSELOR_LIST_PAGE
+
"|"
+
ConsultBIConstants
.
POSITION_CONSULT_COUNSELOR_LIST_BANNER_CLICK
,
bean2
.
specialTopic
Titl
e
bean2
.
specialTopic
Nam
e
)
}
...
...
@@ -80,7 +80,7 @@ class BigShotThreeView : LinearLayout {
NewH5Activity
.
start
(
context
,
h5Params
)
ActionCountUtils
.
count
(
ConsultBIConstants
.
PART_ID_CONSULT_COUNSELOR_LIST_PAGE
+
"|"
+
ConsultBIConstants
.
POSITION_CONSULT_COUNSELOR_LIST_BANNER_CLICK
,
bean3
.
specialTopic
Titl
e
bean3
.
specialTopic
Nam
e
)
}
...
...
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/BigShotTwoView.kt
View file @
00cff53d
...
...
@@ -57,7 +57,7 @@ class BigShotTwoView : LinearLayout {
NewH5Activity
.
start
(
context
,
h5Params
)
ActionCountUtils
.
count
(
ConsultBIConstants
.
PART_ID_CONSULT_COUNSELOR_LIST_PAGE
+
"|"
+
ConsultBIConstants
.
POSITION_CONSULT_COUNSELOR_LIST_BANNER_CLICK
,
bean1
.
specialTopic
Titl
e
bean1
.
specialTopic
Nam
e
)
}
...
...
@@ -68,7 +68,7 @@ class BigShotTwoView : LinearLayout {
NewH5Activity
.
start
(
context
,
h5Params
)
ActionCountUtils
.
count
(
ConsultBIConstants
.
PART_ID_CONSULT_COUNSELOR_LIST_PAGE
+
"|"
+
ConsultBIConstants
.
POSITION_CONSULT_COUNSELOR_LIST_BANNER_CLICK
,
bean2
.
specialTopic
Titl
e
bean2
.
specialTopic
Nam
e
)
}
...
...
m-consultant/src/main/java/com/yidianling/consultant/ui/view/topView/RecommendItemView.kt
View file @
00cff53d
...
...
@@ -71,7 +71,7 @@ class RecommendItemView : LinearLayout {
NewH5Activity
.
start
(
context
,
h5Params
)
ActionCountUtils
.
count
(
ConsultBIConstants
.
PART_ID_CONSULT_COUNSELOR_LIST_PAGE
+
"|"
+
ConsultBIConstants
.
POSITION_CONSULT_COUNSELOR_LIST_BANNER_CLICK
,
bean
.
specialTopic
Titl
e
bean
.
specialTopic
Nam
e
)
}
...
...
m-im/src/main/AndroidManifest.xml
View file @
00cff53d
...
...
@@ -117,7 +117,7 @@
<activity
android:name=
"com.yidianling.avchatkit.activity.AVChatActivity"
android:launchMode=
"s
ingleInstance
"
android:launchMode=
"s
tandard
"
android:screenOrientation=
"portrait"
android:theme=
"@style/FullScreenTheme"
android:windowSoftInputMode=
"stateAlwaysHidden"
/>
...
...
m-im/src/main/java/com/yidianling/avchatkit/AVChatProfile.java
View file @
00cff53d
...
...
@@ -72,7 +72,6 @@ public class AVChatProfile {
}
else
{
launchActivityTimeout
();
AVChatActivity
.
incomingCall
(
AVChatKit
.
getContext
(),
data
,
displayName
,
source
);
AVChatActivity
.
incomingCall
(
AVChatKit
.
getContext
(),
data
,
displayName
,
source
);
}
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment