Is it possible to addFlags on intent with Activity Starter?
An equivalent java line would be:
Intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP );
There are many flags that can be added on intents. For the above example, I tried it on Android Studio and solved me an issue when starting an Intent to a Facebook or Twitter profile. They were opening inside my app, instead of as a new activity. Adding the FLAG_ACTIVITY_NEW_TASK fixed that.