我在UI Fragment和后台服务之间进行了交互。 我使用EventBus。 当然,如果Activity被停止/杀死,那么就没有订阅者。
以下是您了解的代码:
public class LocationService extends Service {
//...
EventBus.getDefault().post(new MessageEventLocationClient(data));
}
public class ClientFragment extends Fragment {
//...
@Subscribe(threadMode = ThreadMode.MAIN)
public void onMessageEvent(MessageEventLocationClient event) {
// update UI
textViewLastSentData.setText(event.trackData.lastLatLon());
}
}
一切都好。
但是,以下是Google Play开发者控制台发送给我的报告:
Devices with errors 14:
Google Nexus 7 (flo) - Android 5.0
Google Nexus 9 (flounder) - Android 5.0
Google Pixel (sailfish) - Android 7.1
Motorola XT1096 (victara) - Android 4.4
...
Exceptions:
java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.tim4dev.imokhere/com.tim4dev.imokhere.MainActivity}: org.a.a.e:
Subscriber class com.tim4dev.imokhere.c and its super
classes have no public methods with the @Subscribe annotation
...
这是什么意思?
这真的是个问题吗?
那该怎么办?
类似的问题是described here。
UPD 即可。 RTM。谢谢大家。
答案 0 :(得分:1)
如前所述,您需要指示proguard不要删除使用@Subscribe注释的方法。如果它们未被使用,Proguard将删除它们,并且由于EventBus将使用反射查找它们,因此它们很可能未被使用。您可以从here:
向proguard配置文件添加一些指令## New rules for EventBus 3.0.x ##
# http://greenrobot.org/eventbus/documentation/proguard/
-keepattributes *Annotation*
-keepclassmembers class ** {
@org.greenrobot.eventbus.Subscribe <methods>;
}
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
# Only required if you use AsyncExecutor
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
<init>(java.lang.Throwable);
}