签名apk中的Eventbus错误

时间:2016-07-25 18:21:54

标签: java android greenrobot-eventbus-3.0

我发布了一些事件,订阅的代码在调试apk上正常工作,但是当我用我的密钥库签名apk并安装应用程序时,相同的代码崩溃。

java.lang.RuntimeException: Unable to start activity ComponentInfo
{com.example.friendz/com.example.friendz.shivaraj.activities.MainActivity}: 
a.a.a.h: Subscriber class com.example.friendz.shivaraj.activities.MainActivity
 and its super classes have no public methods with the @Subscribe annotation

但我的主要活动是订阅者已定义@Subscribe

我的活动中有此订阅者

@Subscribe
public void updateLocationEvent(String isStartLoc) {
    Log.d("eventbuus", "stop event rcvd");
 if (isStartLoc.equals("start")) {
    startLocationUpdates();
 } else {
    stopLocationUpdates();
 }
}

我正在注册&像这样取消注册

@Override
protected void onStart() {
    super.onStart();
    mGoogleApiClient.connect();
    EventBus.getDefault().register(this);
}

@Override
protected void onStop() {
    super.onStop();
    EventBus.getDefault().unregister(this);
}    

1 个答案:

答案 0 :(得分:5)

将此添加到您的proguard配置文件

ProGuard对方法名称进行模糊处理,并可能删除未调用的方法(死代码删除)。由于不直接调用Subscriber方法,ProGuard会将它们误认为未使用。因此,如果启用ProGuard缩小,则必须告知ProGuard保留这些订阅者方法。在ProGuard配置文件(proguard.cfg)中使用以下片段以防止删除订阅者:

-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);
}