android-pay

Play Store In-App Billing custom price programmatically?

旧街凉风 提交于 2019-12-23 02:38:50
问题 My application is used to buy journey tickets. The ticket price is different everytime. Can I use In-App Billing to make the user pay a custom price everytime? If so how? i.e. can I set the price which the user has to pay programmatically? 回答1: You cannot use Google Play In-App Billing to make the user pay a custom price. Moreover you cannot use Google Play In-App Billing to sell physical goods and services like journey tickets: You can use In-app Billing to sell only digital content. You

Where do i find my Google Wallet Transaction ID

前提是你 提交于 2019-12-22 01:28:30
问题 I am looking into transferring my app to another google account, but i can't find my "Transaction ID" as described here: Transfer your application Any idea what i am missing? Thanks in advance. 回答1: The transaction ID is at the bottom of the receipt (specifically the receipt for the Developer Account when you first signed up) in your wallet dashboard payment history. 回答2: Visit: https://payments.google.com Once you are logged into your account, just press the "Subscriptions and services" menu

How to save an Offer to Google Wallet using JWT?

末鹿安然 提交于 2019-12-21 05:23:32
问题 Actually I want to save an offer to 'Google Wallet'. As I haven't worked on it before I did some RND and came across this documentation. In this documentation they are creating Offer class object at Android side but, in my case the Offer class object is creating at our back-end server and I'm getting ready-made JWT token just by hitting one API to our back-end server, now using that JWT token I want to save the offer to the 'Google-Wallet'. Now my question is, is it possible? if Yes please

Google Wallet digital goods: No subscription cancelled callback

人盡茶涼 提交于 2019-12-20 06:26:28
问题 I've been using Google Wallet for handling our subscriptions for some months now. Everything seemed to work fine but I just found out that Google Wallet does not send subscription cancel confirmations any more when a user cancels the subscription. I still receive subscription success callbacks, but our server simply does not get any subscription cancel events. Now I have a bunch of active subscriptions on our end that are already cancelled in Google Wallet. As there is no way to query the

Is there a resolution for this conflict between the material design support library and the gms:wallet library over the field “rippleColor”?

偶尔善良 提交于 2019-12-13 08:29:22
问题 In my project, when I try and add the latest design support library I get this error which appears to be in conflict with the wallet library: D:\Android Stuff\ReleaseMEdia\app\build\intermediates\exploded-aar\com.google.android.gms\play-services-wallet\8.1.0\res\values\wallet_colors.xml Error:(2) Attribute "rippleColor" has already been defined Here is the list of all my gradle dependencies below: compile 'com.google.android.gms:play-services-wallet:8.1.0' compile 'com.google.android.gms:play

Request Failed on production apk

China☆狼群 提交于 2019-12-13 02:59:33
问题 I'm always getting this error when try to request for maskedWallet in production apk. Things that I've already check: I've already check the public key and it was correct. Merchant is enabled in google play console and it was fine. It was working well on test environment. Wallet api was also enabled in my Manifest. Also production apk env was set to WalletConstants.ENVIRONMENT_PRODUCTION Anything else I'm missing that might caused this error? 回答1: Make sure You have added the metadata Tag..

how to get user information in google wallet

狂风中的少年 提交于 2019-12-12 17:18:08
问题 We want to be able to associate app users with real transactions done.The problem is that we have the user’s email address on application back end side, and we track user purchase amounts, but when we go into the Google Wallet transactions we have no way of knowing which transaction/s belong to that user. We need a solution for this, because even if we have the user's email, we cannot search transactions by email address. Is it possible to update the receipt numbers we are sending in the API

Google wallet integration in android app

元气小坏坏 提交于 2019-12-12 08:36:31
问题 I am in way to develop an android app in which we can open google wallet for payment through credit card etc. I want to integrate google wallet in my android app to launch on a button click. Here is my scenario: I have to options one is Payment through credit card to another user account like money transfer and payment on purchase of any item. Second is payment through online banking. Can we use google wallet for the above functions? 回答1: The short answer is no, you cannot use Google Wallet

Google Wallet Subscriptions Error 500

三世轮回 提交于 2019-12-11 04:31:21
问题 i have implemented the Subscriptions flow using the java library jsontoken, but am getting an error 500. happen in the sandox and production. any idea why it is? this is the error : POST https://checkout.google.com/inapp/api/v1/purchase_options 500 (Internal Server Error) this is the code: Calendar cal = Calendar.getInstance(); HmacSHA256Signer signer = new HmacSHA256Signer(ISSUER, null, SIGNING_KEY.getBytes()); JsonToken token = new JsonToken(signer); token.setAudience("Google"); token

Does canceling a user subscription through merchant console/API refunds him money?

扶醉桌前 提交于 2019-12-11 01:17:48
问题 According to In-App billing documentation, if users cancel's subscription by himself, his only way to receive a refund is by contacting a seller directly. But what happens if owner of the application cancels subscription through merchant account or through API call? Will user get a refund in this case? It looks like he will, but Google payment processing is not sure about this. When I cancel a user's subscription he receives email that explicitly states that " No refunds will be issued ". But