INNER CODE UNIT · Kotlin
refreshMainActivity
shmykelsa/AAAD · app/src/main/java/com/legs/appsforaa/AboutPaymentActivity.kt:377
private fun refreshMainActivity() {
// Create intent to return to MainActivity and refresh pro status
val intent = Intent(this, MainActivityNew::class.java)
intent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_NEW_TASK
intent.putExtra("refresh_pro_status", true)
startActivity(intent)
finish()
}
}