aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/kotlin/ca
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-19 20:00:02 -0700
committerAllan Wang <me@allanwang.ca>2017-06-19 20:00:02 -0700
commitde0836ae903ccd6ee75d27e4c7e59fbcc1eb364c (patch)
treed685276c24ec2bb3c12765e99e6d9beb3a59e70e /library/src/main/kotlin/ca
parent94defc1ab5f9f987d5c1b14c91613364ce4ed1ba (diff)
downloadkau-de0836ae903ccd6ee75d27e4c7e59fbcc1eb364c.tar.gz
kau-de0836ae903ccd6ee75d27e4c7e59fbcc1eb364c.tar.bz2
kau-de0836ae903ccd6ee75d27e4c7e59fbcc1eb364c.zip
Add source dirs
Diffstat (limited to 'library/src/main/kotlin/ca')
-rw-r--r--library/src/main/kotlin/ca/allanwang/kau/utils/ContextUtils.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/main/kotlin/ca/allanwang/kau/utils/ContextUtils.kt b/library/src/main/kotlin/ca/allanwang/kau/utils/ContextUtils.kt
index cc72921..4db63d2 100644
--- a/library/src/main/kotlin/ca/allanwang/kau/utils/ContextUtils.kt
+++ b/library/src/main/kotlin/ca/allanwang/kau/utils/ContextUtils.kt
@@ -34,7 +34,7 @@ fun Activity.restart(extras: ((Intent) -> Unit)? = null) {
fun Context.startActivity(clazz: Class<out Activity>, clearStack: Boolean = false, intentBuilder: Intent.() -> Unit = {}, bundle: Bundle? = null) {
val intent = (Intent(this, clazz))
- if (clearStack) intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_NEW_TASK)
+ if (clearStack) intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK or Intent.FLAG_ACTIVITY_NEW_TASK)
intent.intentBuilder()
ContextCompat.startActivity(this, intent, bundle)
if (this is Activity && clearStack) finish()