Google-IAP icon indicating copy to clipboard operation
Google-IAP copied to clipboard

D/GoogleBillingService: buy. Google billing service is not ready yet. (SKU is not ready yet -2)

Open jefelon opened this issue 3 years ago • 7 comments

D/GoogleBillingService: buy. Google billing service is not ready yet. (SKU is not ready yet -2)

jefelon avatar Jun 07 '22 23:06 jefelon

hi. did you resolve this? i get the same message

shauncrain avatar Jun 30 '22 02:06 shauncrain

Update: I have resolved my issue with this error. I have created my own fork of this library with my changes. In my case, I am using only subscriptions and no other in app purchases with billing library 5.0.0 and I found it needed some updates to this code to work for me, and the code needed to provide the offer token in the billing parameters build. All issues are related to using 5.0.0 I believe.
note.. I have only changed the library in my fork, not the sample app. And in my case I actually put local copies of the library files into my own project.
my fork is at: https://github.com/shauncrain/Google-IAP

shauncrain avatar Jul 16 '22 04:07 shauncrain

now project is updated or not??

mubasherhussain3 avatar Jul 21 '22 09:07 mubasherhussain3

Pump! This issue is remain and not fix yet! @akshaaatt Edit: When i try to add dummy list of nonsubscribe items, it is work

tracer8 avatar Aug 27 '22 12:08 tracer8

Seems to be still wrong in 1.2.5. Subscription is working in the 1.2.2

gitkobold avatar Sep 12 '22 06:09 gitkobold

Pump! This issue is remain and not fix yet! @akshaaatt Edit: When i try to add dummy list of nonsubscribe items, it is work

This workaround fixes the issue!

iapConnector = IapConnector( context = this, nonConsumableKeys = listOf(), consumableKeys = listOf(), did not work.

    iapConnector = IapConnector(
        context = this,
        nonConsumableKeys = listOf(""),
        consumableKeys = listOf(""),

did work!

eddielement avatar Oct 30 '22 20:10 eddielement

Pump! This issue is remain and not fix yet! @akshaaatt Edit: When i try to add dummy list of nonsubscribe items, it is work

This workaround fixes the issue!

iapConnector = IapConnector( context = this, nonConsumableKeys = listOf(), consumableKeys = listOf(), did not work.

    iapConnector = IapConnector(
        context = this,
        nonConsumableKeys = listOf(""),
        consumableKeys = listOf(""),

did work!

My app has no nonConsumableKeys, so I used emptyList() or listOf(), both these two methods return error SKU is not ready, listOf("") works but it causes onConnected being called 3 times.

jdleung avatar May 29 '23 02:05 jdleung