Commit 9b6738d2 by 严久程

Merge branch '声网通话流程优化' of…

Merge branch '声网通话流程优化' of ssh://gitlab.yidianling.com:2224/app_android_lib/YDL-Component into 声网通话流程优化
parents 5a098f99 7a62b65d
...@@ -5,18 +5,18 @@ ext { ...@@ -5,18 +5,18 @@ ext {
ydlPublishVersion = [ ydlPublishVersion = [
// -------------- 业务模块 -------------- // -------------- 业务模块 --------------
//第三步 若干 //第三步 若干
"m-confide" : "0.0.48.51", "m-confide" : "0.0.48.52",
"m-consultant" : "0.0.59.10", "m-consultant" : "0.0.59.10",
"m-fm" : "0.0.29.9", "m-fm" : "0.0.29.9",
"m-user" : "0.0.60.11", "m-user" : "0.0.60.11",
"m-home" : "0.0.22.3", "m-home" : "0.0.22.3",
"m-im" : "0.0.18.9", "m-im" : "0.0.18.10",
"m-dynamic" : "0.0.7.7", "m-dynamic" : "0.0.7.7",
"m-article" : "0.0.0.5", "m-article" : "0.0.0.5",
"m-muse" : "0.0.28.12", "m-muse" : "0.0.28.12",
"m-tests" : "0.0.24.4", "m-tests" : "0.0.24.6",
"m-course" : "0.0.42.3", "m-course" : "0.0.42.4",
//-------------- 业务模块 API 层 -------------- //-------------- 业务模块 API 层 --------------
"m-audioim-api" : "0.0.6", "m-audioim-api" : "0.0.6",
...@@ -39,7 +39,7 @@ ext { ...@@ -39,7 +39,7 @@ ext {
"ydl-webview" : "0.0.38.32", "ydl-webview" : "0.0.38.32",
"ydl-media" : "0.0.21.6", "ydl-media" : "0.0.21.6",
"ydl-pay" : "0.0.18.9", "ydl-pay" : "0.0.18.9",
"m-audioim" : "0.0.49.29.3", "m-audioim" : "0.0.49.29.4",
"ydl-flutter-base": "0.0.14.14", "ydl-flutter-base": "0.0.14.14",
//以下 几乎不会动 //以下 几乎不会动
...@@ -122,7 +122,7 @@ ext { ...@@ -122,7 +122,7 @@ ext {
"ydl-webview" : "0.0.38.31", "ydl-webview" : "0.0.38.31",
"ydl-media" : "0.0.21.6", "ydl-media" : "0.0.21.6",
"ydl-pay" : "0.0.18.9", "ydl-pay" : "0.0.18.9",
"m-audioim" : "0.0.49.29.3", "m-audioim" : "0.0.49.29.4",
"ydl-flutter-base": "0.0.14.14", "ydl-flutter-base": "0.0.14.14",
//以下 几乎不会动 //以下 几乎不会动
......
...@@ -8,6 +8,7 @@ import com.alibaba.android.arouter.facade.annotation.Route ...@@ -8,6 +8,7 @@ import com.alibaba.android.arouter.facade.annotation.Route
import com.channel.ydl_flutter_base.base.BaseFlutterFragment import com.channel.ydl_flutter_base.base.BaseFlutterFragment
import com.google.gson.Gson import com.google.gson.Gson
import com.ydl.ydl_router.manager.YDLRouterManager import com.ydl.ydl_router.manager.YDLRouterManager
import com.ydl.ydlcommon.bean.StatusBarOptions
import com.ydl.ydlcommon.data.http.BaseResponse import com.ydl.ydlcommon.data.http.BaseResponse
import com.ydl.ydlcommon.data.http.RxUtils import com.ydl.ydlcommon.data.http.RxUtils
import com.ydl.ydlcommon.data.http.ThrowableConsumer import com.ydl.ydlcommon.data.http.ThrowableConsumer
...@@ -66,6 +67,11 @@ class FlutterCourseHomeFragment : BaseFlutterFragment() { ...@@ -66,6 +67,11 @@ class FlutterCourseHomeFragment : BaseFlutterFragment() {
} }
} }
override fun getStatusViewOptions(): StatusBarOptions {
return StatusBarOptions(true, true)
}
/** /**
* 获取优惠券信息 * 获取优惠券信息
*/ */
......
...@@ -859,7 +859,7 @@ public class InputPanel implements IEmoticonSelectedListener, IAudioRecordCallba ...@@ -859,7 +859,7 @@ public class InputPanel implements IEmoticonSelectedListener, IAudioRecordCallba
private void initAudioRecord() { private void initAudioRecord() {
if (audioMessageHelper == null) { if (audioMessageHelper == null) {
UIKitOptions options = NimUIKitImpl.getOptions(); UIKitOptions options = NimUIKitImpl.getOptions();
audioMessageHelper = new AudioRecorder(container.activity, options.audioRecordType, options.audioRecordMaxTime, this); audioMessageHelper = new AudioRecorder(container.activity, options.audioRecordType, 60, this);
} }
} }
......
...@@ -11,7 +11,7 @@ import org.json.JSONObject ...@@ -11,7 +11,7 @@ import org.json.JSONObject
* flutter版测评首页 * flutter版测评首页
* Created by xj on 2019/11/19. * Created by xj on 2019/11/19.
*/ */
@Route(path = "/tests/home") @Route(path = "/ceshi/home")
class NewTestHomeActivity : BaseFlutterActivity() { class NewTestHomeActivity : BaseFlutterActivity() {
override fun initialRoute(): String { override fun initialRoute(): String {
return "test/home" return "test/home"
......
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