Android биллинг v3 - исключение NullPointerException в BillingClientImpl.java:668

У меня исключение в Google Play Billing Library v3. Я выпускаю биллинговый клиент в методе деятельности onDestroy.

У кого-нибудь была эта проблема?

Fatal Exception: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Context.getPackageName()' on a null object reference
   at com.android.billingclient.api.BillingClientImpl$BillingServiceConnection.onServiceConnected(BillingClientImpl.java:668)
   at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:1259)
   at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1276)
   at android.os.Handler.handleCallback(Handler.java:815)
   at android.os.Handler.dispatchMessage(Handler.java:104)
   at android.os.Looper.loop(Looper.java:224)
   at android.app.ActivityThread.main(ActivityThread.java:5830)
   at java.lang.reflect.Method.invoke(Method.java)
   at java.lang.reflect.Method.invoke(Method.java:372)
   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1113)
   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:879)

Код биллинга клиентского подключения вызова:

private com.android.billingclient.api.BillingClient billingClient;

public AppBillingManager(Context context) {
    billingClient = new BillingClient.Builder(context)
            .setListener(this)
            .build();
}

public void doConnect(final Runnable postConnection) {
    billingClient.startConnection(new BillingClientStateListener() {
        @Override
        public void onBillingSetupFinished(int resultCode) {
            isConnected = BillingClient.BillingResponse.OK == resultCode;
            notifyConnectivityState();
            if (isConnected) {
                postConnection.run();
            } else {
                listener.onConnectedToBillingService(resultCode);
            }
        }

        @Override
        public void onBillingServiceDisconnected() {
            isConnected = false;
            listener.onDisconnectedBillingService();
        }
    });
}

public void release() {
    this.billingClient.endConnection();
}

1 ответ

Google недавно выпустила новую версию биллинговой библиотеки. Проверьте это. Это должно быть исправлено. https://android-developers.googleblog.com/2017/09/google-play-billing-library-10-released.html

Другие вопросы по тегам