@Subscribefun onEvent(event: AuthenticationEvent) { if (event.isAuthenticated) { startFragment(signInFragment,SignInFragment.TAG) } else { startFragment(signOutFragment,SignOutFragment.TAG) }}
在我的build.gradle文件中,我添加了这个
compile 'org.greenrobot:eventbus:3.0.0'
有什么我需要做的才能获得这个触发器吗?
解决方法 要在Kotlin中使用注释处理器,您需要使用 Kotlin Annotation Processor tool (kapt).将其添加到build.gradle:
apply plugin: 'kotlin-kapt'
According to GreenRobot(并通过我的测试确认),这就是获得@Subscribe所需的全部内容.
总结以上是内存溢出为你收集整理的android – Kotlin:我们可以在Kotlin中使用EventBus(GreenRobot)的@Subscribe吗?全部内容,希望文章能够帮你解决android – Kotlin:我们可以在Kotlin中使用EventBus(GreenRobot)的@Subscribe吗?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)