add ugc upload

This commit is contained in:
lixiaopeng
2020-10-21 11:45:15 +08:00
parent 619ad60f18
commit 084da50100
4 changed files with 44 additions and 0 deletions

View File

@@ -218,6 +218,16 @@ class MainService : Service() {
// sendBroadcast(intent)
}
private fun sendUgcStatusReceiver(id: String?, type: String?, fromType: String?) {
Log.e("MainService", "sendUgcStatusReceiver ----> id = $id ---type = $type --fromType = $fromType ")
var intent = Intent()
intent.action = "com.zhidao.roadcondition.marker.info"
intent.putExtra("id", id)
intent.putExtra("type", type)
intent.putExtra("fromType", fromType)
sendBroadcast(intent)
}
/**
* 初始化定位监听
*/