0

I used org.simalliance.openmobileapi.jar in my project.

When I use:

  • "provided files('libs/org.simalliance.openmobileapi.jar')" in my project's app gradle all things looks OK

  • "compile files('libs/org.simalliance.openmobileapi.jar')" in app gradle or I create sign apk file, my project not work properly.

The problem occurs when i want open logical channel, this time occurred security exception:

(java.lang.SecurityException: Access Control Enforcer: no APDU access allowed!)

Michael Roland
  • 39,663
  • 10
  • 99
  • 206
mehdi
  • 5
  • 5

1 Answers1

1

This error occur on sign apk due to Pro guard . Add Pro guard rule for org.simalliance.openmobileapi.jar. or make minifyEnabled false on build.gradle file.

Vinay
  • 732
  • 5
  • 8