Commit 759bef26 by YKai

feat: m-user组件升级

parent eabaf4e9
...@@ -8,7 +8,7 @@ ext { ...@@ -8,7 +8,7 @@ ext {
"m-confide" : "0.0.49.13", "m-confide" : "0.0.49.13",
"m-consultant" : "0.0.59.93", "m-consultant" : "0.0.59.93",
"m-fm" : "0.0.30.04", "m-fm" : "0.0.30.04",
"m-user" : "0.0.61.73", "m-user" : "0.0.61.74",
"m-home" : "0.0.22.73", "m-home" : "0.0.22.73",
"m-im" : "0.0.19.80", "m-im" : "0.0.19.80",
"m-dynamic" : "0.0.7.29", "m-dynamic" : "0.0.7.29",
......
...@@ -38,6 +38,11 @@ import io.reactivex.schedulers.Schedulers ...@@ -38,6 +38,11 @@ import io.reactivex.schedulers.Schedulers
import kotlinx.android.synthetic.main.user_mine_activity_feed_back.* import kotlinx.android.synthetic.main.user_mine_activity_feed_back.*
import java.io.File import java.io.File
import kotlin.properties.Delegates import kotlin.properties.Delegates
import android.os.Build
/** /**
...@@ -220,8 +225,14 @@ class FeedBackActivity : BaseActivity(), View.OnClickListener { ...@@ -220,8 +225,14 @@ class FeedBackActivity : BaseActivity(), View.OnClickListener {
if (list.isEmpty()) { if (list.isEmpty()) {
return return
} }
for (i in list.indices) { if (Build.VERSION.SDK_INT > Build.VERSION_CODES.P) {
addImag(list[i].path) for (i in list.indices) {
addImag(list[i].androidQToPath)
}
} else {
for (i in list.indices) {
addImag(list[i].path)
}
} }
} }
......
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