Created
December 5, 2018 04:09
-
-
Save tompee26/c6d0d07859f9e97674d20103433e07dd to your computer and use it in GitHub Desktop.
ActivityModule.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Module | |
class MainActivityModule { | |
@Provides | |
@MainActivityScope | |
fun provideWarrior(): Warrior = Warrior("Hercules", "Sword") | |
@Provides | |
@MainActivityScope | |
fun provideActivity(mainActivity: MainActivity) : MainActivity = mainActivity | |
@Provides | |
@MainActivityScope | |
fun provideFragmentManager(mainActivity: MainActivity) : FragmentManager = mainActivity.supportFragmentManager | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment