Cannot access billing for other packages

Hi!
I’m trying to integrate with billing services, but an exception occurs when I try to get subscriptions:
11-01 10:36:34.565 5279-5279/? W/System.err: java.lang.SecurityException: Cannot access billing for other packages
11-01 10:36:34.567 5279-5279/? W/System.err: at android.os.Parcel.readException(Parcel.java:1465)
11-01 10:36:34.568 5279-5279/? W/System.err: at android.os.Parcel.readException(Parcel.java:1419)
11-01 10:36:34.568 5279-5279/? W/System.err: at co.poynt.os.services.v1.IPoyntInAppBillingService$Stub$Proxy.getSubscriptions(IPoyntInAppBillingService.java:122)
11-01 10:36:34.569 5279-5279/? W/System.err: at br.com.gzsistemas.flexpdvmobile.ComprarAplicativoActivity.onOk(ComprarAplicativoActivity.java:62)
11-01 10:36:34.571 5279-5279/? W/System.err: at java.lang.reflect.Method.invokeNative(Native Method)
11-01 10:36:34.572 5279-5279/? W/System.err: at java.lang.reflect.Method.invoke(Method.java:515)
11-01 10:36:34.573 5279-5279/? W/System.err: at android.view.View$1.onClick(View.java:3818)
11-01 10:36:34.575 5279-5279/? W/System.err: at android.view.View.performClick(View.java:4438)
11-01 10:36:34.575 5279-5279/? W/System.err: at android.view.View$PerformClick.run(View.java:18422)
11-01 10:36:34.576 5279-5279/? W/System.err: at android.os.Handler.handleCallback(Handler.java:733)
11-01 10:36:34.577 5279-5279/? W/System.err: at android.os.Handler.dispatchMessage(Handler.java:95)
11-01 10:36:34.579 5279-5279/? W/System.err: at android.os.Looper.loop(Looper.java:136)
11-01 10:36:34.580 5279-5279/? W/System.err: at android.app.ActivityThread.main(ActivityThread.java:5001)
11-01 10:36:34.580 5279-5279/? W/System.err: at java.lang.reflect.Method.invokeNative(Native Method)
11-01 10:36:34.581 5279-5279/? W/System.err: at java.lang.reflect.Method.invoke(Method.java:515)
11-01 10:36:34.581 5279-5279/? W/System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
11-01 10:36:34.582 5279-5279/? W/System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
11-01 10:36:34.583 5279-5279/? W/System.err: at dalvik.system.NativeStart.main(Native Method)

my ‘dev’ app is on the Mission Control and have a plan

I can’t see your code, but in your call to getSubscriptions(), you need to set the first parameter to your app’s Package Name. I use getApplication().getPackageName(), so that it always uses the current Package Name.

I hope that helps,
Carl