How to solve the issue with Dalvik compiler limita

2020-01-30 04:35发布

My team and I have inherited a large Android project from another team. The whole application with all the included libraries is reported to have around 35000 methods. We now have the task to implement a new service in the app where we need to use Protocol Buffers.

The problem is that the generated .jar file with all the required .proto files creates another couple of 35000 methods, that's 70000 methods. And if you are not aware, the Android compiler has a limitation of 65536 methods per .dex file. We are clearly over that limit and we are getting the following error trying to compile the app:

Unable to execute dex: method ID not in [0, 0xffff]: 65536
Conversion to Dalvik format failed: Unable to execute dex: method ID not in [0, 0xffff]: 65536

Yes, the application architecture should probably be restructured but that will take time. And for now we are trying to figure out a solution to work around this problem temporarily.

Any suggestions?

7条回答
爷的心禁止访问
2楼-- · 2020-01-30 04:43

Enable Proguard (http://developer.android.com/tools/help/proguard.html) to remove unused methods. The protobuf generator creates thousands of methods that are never actually used.

Micro-protobuffers (https://code.google.com/p/micro-protobuf/) may also be useful.

查看更多
对你真心纯属浪费
3楼-- · 2020-01-30 04:45

If you are using eclipse this is the easiest work around Click Here!

查看更多
Explosion°爆炸
4楼-- · 2020-01-30 04:47

If this is the first use of Protocol buffers, you could look at alternative JavaME implementations i.e.

there are others listed in Third party add ons. If have not used any of them, but they seem to be smaller and do not have all the methods created by the standard protocol buffers.

查看更多
走好不送
5楼-- · 2020-01-30 04:49

Square had similar issues and they built Wire to deal with the method explosion caused by protobufs. They claim to have killed 10,000 methods.

查看更多
地球回转人心会变
6楼-- · 2020-01-30 04:54

We've recently added Nano Protobufs to Android which significantly reduces the number of methods generated.

查看更多
姐就是有狂的资本
7楼-- · 2020-01-30 04:59

In versions of Google Play services prior to 6.5, you had to compile the entire package of APIs into your app. In some cases, doing so made it more difficult to keep the number of methods in your app (including framework APIs, library methods, and your own code) under the 65,536 limit.

From version 6.5, you can instead selectively compile Google Play service APIs into your app. For example, to include only the Google Fit and Android Wear APIs, replace the following line in your build.gradle file:

compile 'com.google.android.gms:play-services:6.5.87'

with these lines:

compile 'com.google.android.gms:play-services-fitness:6.5.87'
compile 'com.google.android.gms:play-services-wearable:6.5.87'

for more reference, you can click here

查看更多
登录 后发表回答