Open GoogleCodeExporter opened 9 years ago
Here is the solution from one of major Android device vendors:
The fix in SEService.java is:
- boolean bindingSuccessful = mContext.bindService(new
Intent(ISmartcardService.class
- .getName()), mConnection, Context.BIND_AUTO_CREATE);
+ Intent serviceIntent = new Intent(ISmartcardService.class.getName());
+ serviceIntent.setClassName("org.simalliance.openmobileapi.service",
+
"org.simalliance.openmobileapi.service.SmartcardService");
+ boolean bindingSuccessful = mContext.bindService(serviceIntent,
mConnection, Context.BIND_AUTO_CREATE);
Original comment by danny.w....@gmail.com
on 4 Dec 2014 at 6:08
[deleted comment]
i need this fix for my company.
any release scheduled for thi fix?
this fix need only update software from repository
(https://seek-for-android.googlecode.com/svn/trunk/repository/) or it needs rom
device update?
Original comment by xan.scale
on 24 Feb 2015 at 10:00
using android:targetSdkVersion="19" works
Original comment by xan.scale
on 25 Feb 2015 at 4:41
Original issue reported on code.google.com by
danny.w....@gmail.com
on 3 Dec 2014 at 4:54