android工作室更新了,代码太大了

juzqafwq  于 2021-07-08  发布在  Java
关注(0)|答案(2)|浏览(363)

我有一个系统已经生产了两年了。它是用于控制公司设备的emm系统。
它使用 FireBase 将在设备上执行的功能从服务器应用程序发送到设备。
您可以向设备发送大约400个可能的命令,所有这些命令最初都在一个类中处理,这会覆盖 onMessageReceived()FireBaseMessagingService 班级。
旧版本的androidstudio构建了apk,目前正在生产中。我已经开始在我的系统的版本2工作了大约一年后。所以我把我的android工作室更新到了最新版本(4)。
问题是:
当我尝试构建项目并将其推到设备上时,我得到了

error: code too large public void onMessageReceived(RemoteMessage remoteMessage) {

如前所述 onMessageReceived 方法可以处理来自服务器应用程序的400种不同类型的推送通知,因此方法体中有许多if/else语句。
既然as升级了,这就不起作用了,有什么原因吗?
有什么我可以改变的环境来克服这个问题吗?
我尝试过:
我考虑将if/else的一半放在另一个服务类中,以减少方法代码。这将涉及通过 remoteMessageMap 到另一个类进行if/else处理。 remoteMessageMap from firebase是一个Map,Map在扩展接口时不可序列化,因此无法传递它。

public class MyAndroidFirebaseMsgService extends FirebaseMessagingService {

    private static final String TAG = "MyAndroidFCMService";
    AppObj appObj;

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {

        Log.e(TAG, "remoteMessage.getData() = " + remoteMessage.getData());

        Map remoteMessageMap = remoteMessage.getData();

        String message = (String)remoteMessageMap.get("message");

谢谢
[编辑1]

else if(message.trim().equalsIgnoreCase("CLEARCACHE_REMOVE_APP_WL")){

            Log.e(TAG, "received CLEARCACHE_REMOVE_APP_WL");

            String pushGuid =  (String)remoteMessageMap.get("pushguid");
            Log.e(TAG, "pushGuid = " + pushGuid);

            String clearCacheRemoveWhitelist =  (String)remoteMessageMap.get("clear_cache_app_names");

            Intent intentExecutePushCommand = new Intent( getApplicationContext(), ExecutePushCommandIntentService.class);
            intentExecutePushCommand.putExtra("compID", MenuActivity.companyID);
            intentExecutePushCommand.putExtra("command", message);
            intentExecutePushCommand.putExtra("pushguid", pushGuid);
            intentExecutePushCommand.putExtra("clear_cache_app_names", clearCacheRemoveWhitelist);

            startService(intentExecutePushCommand);

        }else if(message.trim().equalsIgnoreCase("CLEARCACHE_GET_PACKAGENAMES_WL")){

            Log.e(TAG, "received CLEARCACHE_GET_PACKAGENAMES_WL");

            String pushGuid =  (String)remoteMessageMap.get("pushguid");
            Log.e(TAG, "pushGuid = " + pushGuid);

            Intent intentExecutePushCommand = new Intent( getApplicationContext(), ExecutePushCommandIntentService.class);
            intentExecutePushCommand.putExtra("compID", MenuActivity.companyID);
            intentExecutePushCommand.putExtra("command", message);
            intentExecutePushCommand.putExtra("pushguid", pushGuid);

            startService(intentExecutePushCommand);

        }else if(message.trim().equalsIgnoreCase("CLEARCACHE_ADD_PACKAGENAME_WL")){

            Log.e(TAG, "received CLEARCACHE_ADD_PACKAGENAME_WL");

            String pushGuid =  (String)remoteMessageMap.get("pushguid");
            Log.e(TAG, "pushGuid = " + pushGuid);

            String packageName =  (String)remoteMessageMap.get("package_name");

            Intent intentExecutePushCommand = new Intent( getApplicationContext(), ExecutePushCommandIntentService.class);
            intentExecutePushCommand.putExtra("compID", MenuActivity.companyID);
            intentExecutePushCommand.putExtra("command", message);
            intentExecutePushCommand.putExtra("pushguid", pushGuid);
            intentExecutePushCommand.putExtra("package_name", packageName);

            startService(intentExecutePushCommand);

        }
fruv7luv

fruv7luv1#

似乎您多次重复相同的代码行,只需将这些代码行以及可能更多的代码行放在一个单独的方法中,该方法对每个代码行都进行调用 else if 这将缩小 onMessageReceived() ```
Intent intentExecutePushCommand = new Intent( getApplicationContext(), ExecutePushCommandIntentService.class);
intentExecutePushCommand.putExtra("compID", MenuActivity.companyID);
intentExecutePushCommand.putExtra("command", message);
intentExecutePushCommand.putExtra("pushguid", pushGuid);

vmpqdwk3

vmpqdwk32#

没有必要通过考试 remoteMessageMap 去另一个班级。问题的根源是java方法大小的限制。以下是与此问题相关的oracle官方文档:
代码长度
code_length项的值给出此方法的代码数组中的字节数。
代码长度的值必须大于零(因为代码数组不能为空)并且小于65536。
关键是你的 onMessageReceived 方法太长,已编译代码的大小大于64kb。奇怪的是,为什么在以前版本的androidstudio中编译得很好:)
无论如何,解决方法是将方法分解成更小的片段。我的建议是通过一些消息类型进行分段。例如:

private static final String COMMAND_1 = "COMMAND_1";
private static final String COMMAND_2 = "COMMAND_2";

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    Log.e(TAG, "remoteMessage.getData() = " + remoteMessage.getData());

    Map remoteMessageMap = remoteMessage.getData();

    String message = (String) remoteMessageMap.get("message");

    String type = extrated_from_received_message;

    switch (type) {
        case COMMAND_1:
            handleCommand1(remoteMessageMap);
            break;
        case COMMAND_2:
            handleCommand2(remoteMessageMap);
            break;

        // more commands ...

        default:
            // ...
    }
}

private void handleCommand1(Map remoteMessageMap){
    // do whatever related to command 1
}

private void handleCommand2(Map remoteMessageMap){
    // do whatever related to command 2
}

这样可以优化方法的大小,大大提高调用方法的性能。

相关问题