Coder Social home page Coder Social logo

Some devices won't run tests: "java.lang.VerifyError: Rejecting class X because it failed compile-time verification" about dexopener HOT 7 CLOSED

tmurakami avatar tmurakami commented on June 14, 2024
Some devices won't run tests: "java.lang.VerifyError: Rejecting class X because it failed compile-time verification"

from dexopener.

Comments (7)

tmurakami avatar tmurakami commented on June 14, 2024

Are you testing an Android library?
Or an app?
If you are testing an Android app, it seems strange that the test class is in DexOpener's dex cache.

Could you add the following three lines to your AndroidJUnitRunner#newApplication and show me the logs?

Log.d("YourApp", "context.getApplicationInfo().sourceDir=" + context.getApplicationInfo().sourceDir);
Log.d("YourApp", "getContext().getApplicationInfo().sourceDir=" + getContext().getApplicationInfo().sourceDir);
Log.d("YourApp", "getTargetContext().getApplicationInfo().sourceDir=" + getTargetContext().getApplicationInfo().sourceDir);

from dexopener.

gefilte avatar gefilte commented on June 14, 2024

The module under test is a library (as in com.android.library gradle plugin) but it's just a module attached to an app project. I was able to reproduce in two different modules with the same result.

Here's the output from your requested debugging:

06-02 11:11:21.034 D/TestRunner: context.getApplicationInfo().sourceDir=/data/app/com.redacted.test-2/base.apk
06-02 11:11:21.034 D/TestRunner: getContext().getApplicationInfo().sourceDir=/data/app/com.redacted.test-2/base.apk
06-02 11:11:21.034 D/TestRunner: getTargetContext().getApplicationInfo().sourceDir=/data/app/com.redacted.test-2/base.apk

from dexopener.

tmurakami avatar tmurakami commented on June 14, 2024

Thank you for your reply.

There is one more request.
Could I have all the logs?
If it is impossible, would you please show me the logs tagged as dex2oat?

from dexopener.

gefilte avatar gefilte commented on June 14, 2024

I created a gist:
https://gist.github.com/gefilte/7f4d0d6a487c085896dc86694e0908d1

It's a lot of noise but should include what you are looking for. It is unfiltered logcat starting at the point I install the app package through the completed run of the test. All the relevant package references will contain com.redacted, and I did find/replace so that the relevant modules show up separately (packageA, packageB, appPackage, authlib, and anotherpackage. Great names, eh?) The test is in packageA, but depends on some things in packageB. The overall packageA depends on packageB, authlib, and anotherpackage.

Anyway, hopefully you find what you're looking for.

from dexopener.

tmurakami avatar tmurakami commented on June 14, 2024

Thank you.
I checked your log file and it seems to be a problem of ASMDEX which is a bytecode manipulation library used by DexOpener.

06-02 16:26:55.675 I/dex2oat: Verification error in void com.redacted.packageA.util.MockPackageBManagerModule.<init>()
06-02 16:26:55.675 I/dex2oat: void com.redacted.packageA.util.MockPackageBManagerModule.<init>(): [0xFFFFFFFF] invalid reg index 1+25 in range invoke (> 25)
06-02 16:26:55.675 W/dex2oat: Verification failed on class com.redacted.packageA.util.MockPackageBManagerModule in /data/data/com.redacted.packageA.test/code_cache/dexopener/classes114178148.zip because: Verifier rejected class com.redacted.packageA.util.MockPackageBManagerModule due to bad method void com.redacted.packageA.util.MockPackageBManagerModule.<init>()

The dex2oat which is a DEX code compilation tool failed bytecode verification.
According to the second line, register size overflow has occurred.

ASMDEX is an old library, so we plan to change it to other newer libraries, but it will take time.
If you cannot wait, we recommend kotlin-allopen plugin instead.

from dexopener.

tmurakami avatar tmurakami commented on June 14, 2024

We have released a new version 0.9.9 using Smali instead of ASMDEX.
This problem may be solved, so please try it.

from dexopener.

gefilte avatar gefilte commented on June 14, 2024

This seems to have solved the problem. Thanks!

from dexopener.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.