Questions tagged [android-billing]

Android In-app Billing is a Google Play service that lets you sell digital content from inside your applications.

You can use the service to sell a wide range of content, including downloadable content such as media files or photos, virtual content such as game levels or potions, premium services and features, and more. You can use In-app Billing to sell products as:

Standard in-app products (one-time billing), or

Subscriptions, (recurring, automated billing)

Useful links

475 questions
0
votes
1 answer

SkuDetails is not updated on price change

I am facing an issue. I have implemented in-app billing by Google for android application and whenever I update a price of an in-app product, it is reflected in the in-app billing screen when billingClient.launchBillingFlow() is triggered. But I am…
0
votes
1 answer

Inapp purchase discount using template

For Android in app purchasing module... I am following guidelines as given on Official Page I wish to present 4-5 non-consumable digital goods within my app. So for each digital product I have created a pricing template But if the user of my app…
0
votes
0 answers

Android - In app subscription doesn't auto renew

I am using the billingclient in version 3.0.1 to manage some subscriptions (monthly, bi-annually and annually). com.android.billingclient:billing-ktx:3.0.1 So far it's working great, user can subscribe and have the benefits from it directly in the…
0
votes
1 answer

Android: Billing 3.0 issues - "Billing unavailable for this package and user"

I keep getting "Billing unavailable for this package and user" and I have set up everything correctly in Google Play Console and have implemented the library as per the docs. Cant find anything on how to overcome this error. Test user is logged in…
WrightsCS
  • 50,551
  • 22
  • 134
  • 186
0
votes
0 answers

Limit funtions for non subscriptions user.android

I would like to create an app that can be subscriptions. If the user hasn't subscribed, they only have limited functions can use, when they subscribed, they will open the full functions. How to do it on android? Can anyone tell me step by step?…
Penny Chen
  • 79
  • 1
  • 10
0
votes
1 answer

Get same Google Billing SKU's for alterantive app package names

In our app we have 2 app naming schemas: com.my.app for release builds, and com.my.app.debug, for, well, debugging. This is setup this way, so we can separate analytics on Firebase - so debug crashes don't pollute our productions insights. In comes…
0
votes
0 answers

Google Play Subscription not charging bill from real clients in my android app

I am implementing Google Play Billing in my android app. I am selling Google Play Subscriptions. When I use the test card, google is successfully charging the subscription fee. The problem is, when a real user try to purchase a subscription plan,…
0
votes
1 answer

Android in app billing with external subscription payment

I am fully aware of Google rules regarding in app payments, but I am still not sure if my case pass these rules or it violate them, so I wanted to make sure and see if anyone have a better answer. Basically I have a website where people register and…
ia244
  • 145
  • 1
  • 10
0
votes
1 answer

Where do I find BILLING_RESULT_OK for Google Play Billing isFeatureSupported call?

The google play developer documentation for in-app-purchase subscriptions states Before your app enters the billing flow, you can call isFeatureSupported() to determine whether the device supports the products you want to sell When calling this…
Nick Cardoso
  • 20,807
  • 14
  • 73
  • 124
0
votes
1 answer

Android billing library V3.0.0 does not work

It does not work. As simple as that. I used default code given in google docs. private fun initBilling() { val purchasesUpdatedListener = PurchasesUpdatedListener { billingResult, purchase -> Log.d("Billing",…
0
votes
0 answers

RevenueCat - Service connection is disconnected

I am getting the error "SERVICE_DISCONNECTED" on Android Studio when I try to make a purchase with RevenueCat. I've searched everywhere but nothing has worked so far. I followed their quickstart guide and double checked everything but I can't get…
Noah-1
  • 396
  • 1
  • 5
  • 20
0
votes
1 answer

19 orders either "Cancelled" or "Payment declined" is this a coincidence or can a faulty implementation of billing library on my side cause this

On one of my new apps I received 19 individual orders yesterday, but not a single one of them went through, could I have improperly implemented the billing library, can a developer side issue cause this.
0
votes
1 answer

Broadcast of Intent { act=android.intent.action.SCREEN_ON flg=0x50200010 }

I have gotten the following error in my app: ANR( Broadcast of Intent { act=android.intent.action.SCREEN_ON flg=0x50200010 }) or Broadcast of Intent { act=android.intent.action.SCREEN_ON flg=0x50200010 (has extras) I am unable to reproduce it and…
Dileep
  • 11
  • 1
  • 3
0
votes
0 answers

Android BillingClient purchase with "Slow test card. declines after a few minutes" stays PENDING

Following the latest Google Play Billing Library I have implemented in app purchases. I have correctly implemented the a setListener so that any purchase updates are correctly received. During testing, following Androids guidelines, I can make a…
HixField
  • 3,538
  • 1
  • 28
  • 54
0
votes
1 answer

Buy same item over and over without consuming - In App purchase android

I have kept a donate tab and want to let the users buy the items over and over again. I have implemented a code but it lets the user buy the specific item only once. I have used managed products in play console for products. …