mingkangpan
12/22/2016, 4:56 PM@Module
class AppModule {
@Provides
@Named("lol")
fun providesLolTestString() : String{
return "I am a lol string from main module"
}
@Provides
@Named("rofl")
fun providesRoflTestString() : String{
return "I am a rofl string from main module"
}
} `
what am I doing wrong? 🤔