Skip to content

Instantly share code, notes, and snippets.

@plnice
Last active February 1, 2022 20:34
Show Gist options
  • Save plnice/663e781a91c1ae2b12be985e73c7d99a to your computer and use it in GitHub Desktop.
Save plnice/663e781a91c1ae2b12be985e73c7d99a to your computer and use it in GitHub Desktop.
interface CustomTabs {
fun launch(url: String)
}
class CustomTabsImpl @Inject constructor(
@ActivityContext private val context: Context
) : CustomTabs {
fun launch(url: String) {
// The implementation goes here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment