dexmaker icon indicating copy to clipboard operation
dexmaker copied to clipboard

A utility for doing compile or runtime code generation targeting Android's Dalvik VM

Results 28 dexmaker issues
Sort by recently updated
recently updated
newest added

I have the following code: ```java Local local1 = methodCodeBlock.newLocal(TypeId.INT); Local parameter = methodCodeBlock.getParameter(0, TypeId.INT); ... methodCodeBlock.compare(Comparison.LT, label, local1, parameter); ``` The expected result should be: ```java if(local1 >= parameter)...

libc.so  abort --   | libstaticjvmtiagent.so  _checkFailed   | libstaticjvmtiagent.so   | libopenjdkjvmti.so   | libopenjdkjvmti.so  RetransformClasses   | libopenjdkjvmti.so  RetransformClasses   | libstaticjvmtiagent.so  Java_com_android_dx_mockito_inline_StaticMockMethodAdvice_nativeGetCalledClassName   | libart.so  art_quick_generic_jni_trampoline   | libart.so  art_quick_invoke_static_stub   | libart.so  Invoke   | libart.so  ...

Hello, I'm having an issue when mocking a class in an App module. ``` E/MockMakerMultiplexer: Could not init mockmaker com.android.dx.mockito.inline.InlineStaticMockMaker W/.mockmakerissu: Agent attach failed (result=1) : Unable to dlopen libdexmakerjvmtiagent.so:...

bug

libc.so  abort --   | libart.so  Abort   | libbase.so  LogMessage   | libart.so  GetArtField   | libart.so  Field_set   | libart.so  art_quick_invoke_stub   | libart.so  Invoke   | libart.so  ArtInterpreterToCompiledCodeBridge   | libart.so  Execute   | libart.so  artQuickToInterpreterBridge  ...

I can't able to see any nuget to install the dexmaker in Xamarin Forms Android or Xamarin Android application.

I can mock "com.android.bluetooth.btservice.AdapterService" when i include "dexmaker-mockito" But I want to mock final class (android.bluetooth.BluetoothDevice), so i changed "dexmaker-mockito" to "dexmaker-mockito-inline". Then runtime error is occurred like below. 09-09...

For example, Binder.getCallindUid()

How to proguard this lib in AS?

Similar to the report https://github.com/linkedin/dexmaker/issues/100, but a different flavor. When running with: `androidTestImplementation 'com.linkedin.dexmaker:dexmaker-mockito-inline:2.25.1'` Any tests under debug crash if they have any breakpoints set. If I switch to: `androidTestImplementation...

I am working on project where we are just now switching from gradle 4.10 to gradle 5.1 and upgrading to latest version android gradle plugin However I am encountering following...