Recently I converted the Java code into the Kotlin like pushnotification. After the conversion its shown some error and indicate to manually correct those issues.
In Java:
.addFlags(notifyDetails.flags |= Notification.FLAG_AUTO_CANCEL);
After the conversion it's shown like
.addFlags(notifyDetails!!.flags notifyDetails!!.flags or Notification.FLAG_AUTO_CANCEL)
Also, it's indicating an error. How do I fix this?
