Slide 41
Slide 41 text
Between features navigation
Create an object to help you with the boilerplate
object Actions {
fun openHomeIntent(context: Context): Intent =
internalIntent(context, "com.prof18.filmatic.features.home")
private fun internalIntent(context: Context, action: String) =
Intent(action).setPackage(context.packageName)
}
[Android] Architecture Night - @marcoGomier