Questions tagged [google-play-billing]

77 questions
0
votes
0 answers

(Google Play Billing Lib) - Timeout communicating with service when subscribing

I have my app published on internal, alpha, and beta. I'm trying to subscribe by calling billingClient!!.launchBillingFlow. But I'm getting: response code: -3, debug message: Timeout communicating with service. The Google Play account on the android…
0
votes
1 answer

Android Billing Library v4 does not return SKU details

I have an Android app that's already published on Google Play. I am now trying to update the Billing Library from v2 to v4. Connection to Google Play works fine; however, getting SKU details with BillingClient#querySkuDetailsAsync does not return…
0
votes
1 answer

Google Play Developer API purchases.subscriptions doesn't return emailAddress field

I'm integrating with Google Play Developer API (https://developers.google.com/android-publisher). To be more specific I'm trying to get informations about a specific subscription…
0
votes
1 answer

Migration from AIDL to Billing v4 shall i need the InAppBillingService(com.android.vending.billing)

While upgrading the billing library shall I need to remove the InAppBillingServices? How can I test the app billing? Does the static test sku ids are enough to check the subscriptions in the v4 of billing library?
sejn
  • 2,040
  • 6
  • 28
  • 82
0
votes
2 answers

How to set Recyclerview adapter onCallBack

On my activity's onCreate(), I initialized the recyclerview private RecyclerView listView; private Subscription subscription; @Override protected void onCreate(Bundle savedInstanceState) { listView = findViewById(R.id.subscription_list); …
0
votes
1 answer

Can Google Play Billing Library be used on Inventor 2?

Can Google Play Billing Library be used on Inventor 2? i want know it example: dependencies { val billing_version = "4.0.0" implementation("com.android.billingclient:billing:$billing_version") }
jack Jack
  • 1
  • 1
0
votes
1 answer

How to use a single Play Store account to purchase same subscription in different in-app accounts?

I have implemented a login feature in my app where a user can pay for subscription and have that subscription tied to their in-app login account by using the setObfuscatedAccoundId() method. However, in a scenario where the current user(user_A)…
0
votes
0 answers

How to link user to purchase token on a google subscription renewal

While using Unity 2020.3.9f1 and Unity IAP 3.2.1 I can send the initial subscription via a regular https request to my Spring backend and receive the user information from backend auth + purchase token via the request. I can then insert the expiry…
0
votes
0 answers

Is it possible to force authentication for in-app purchases using Google Play billing system?

We're currently working on our Android app's update to match the requirements of Google Play forcing developers to use their billing system. In our app, for payment and product delivery purposes, we force authentication on "merchant's store…
0
votes
0 answers

Creating annotation constants for use as function return types in Android similar to Google Play Billing

I have an Android app (written in Kotlin) for my company that we are currently adding in-app billing to in order to comply with the new rules. We also have an iOS and web app that work with the same data, so we need to validate all purchases on the…
0
votes
1 answer

Is it possible to offer a different billing method than google play in my android app (dating app)?

Inside my dating app is it possible to offer a different billing method than google play? I ask because I heard that now it's forbidden to offer anything else than google play billing but I see close to all app (tinder, etc.) are still offering…
zeus
  • 12,173
  • 9
  • 63
  • 184
0
votes
0 answers

Google Play Billing : Determine a pending price change

I am currently looking into how to deal with price change. The documentation suggests communicating with the user when application starts. To start the price change confirmation flow, the documentation indicates the application can determine if the…
david
  • 1,311
  • 12
  • 32
0
votes
0 answers

Orphaned purchase order in google play console

We have recently introduce in-app purchases through subscriptions into our app. Today, we saw a purchase order which was successfully placed and shows up under 'Order Management' in Google Play Console too. But I find no trace of it in our backend…
0
votes
1 answer

Android Google Play Billing collect now pay later

In reference to this from Google. I am developing an app in react native that I was going to use Stripe as the payment platform. My requirements are: Collect billing details (i.e. credit card) but do not bill initially. back-end will bill…
JamesWat
  • 23
  • 1
  • 5
0
votes
1 answer

In-App Billing: Can we create subscription on the fly inside the app?

Is it possible to create a subscription inside my app without first creating it in the google play console? this because the params of my subscriptions, like price, discount, duration, etc. will be directly connected to the user profile and location…