add ugc upload
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.mogo.module.v2x.receiver
|
||||
|
||||
import android.content.BroadcastReceiver
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
|
||||
/**
|
||||
* ugc上报反馈
|
||||
*/
|
||||
class UgcUploadStatusReceiver : BroadcastReceiver() {
|
||||
override fun onReceive(context: Context, intent: Intent) {
|
||||
if (intent.action == "com.v2x.ugc.upload.status"){
|
||||
var status = intent.getStringExtra("id")
|
||||
var type = intent.getStringExtra("type")
|
||||
var fromType = intent.getStringExtra("fromType")
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user