fun startNotification(context: Context, targetID: String, userID: String, groupID: String, isnotificationFlow: Boolean) {
var intent = Intent(context.applicationContext, NotificationAlertActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_SINGLE_TOP)
intent.putExtra(AppConst.NOTIFICATION_FLOW_TARGET_ID, targetID)
intent.putExtra(AppConst.NOTIFICATION_FLOW_USER_ID, userID)
intent.putExtra(AppConst.NOTIFICATION_FLOW_GROUP_ID, groupID)
intent.putExtra(AppConst.NOTIFICATION_FLOW, isnotificationFlow)
context.applicationContext.startActivity(intent)
}
это мой код для открытия активности с приемника вещания