Google Checkout for Android - android

I want to develop a shopping cart type application in android where the user
needs to purchase the products from the list of products. Once the
user selects the product, the payment should be made by opening Google Checkout.
Please let me know what you people think about this.
Hope to get the answer quickly.

It looks like you're interested in more information about in-app purchase frameworks.
For Android apps have a look at the Android Market In-app Billing:
http://developer.android.com/guide/market/billing/index.html
For Web apps have a look at Google In-App Payments:
http://code.google.com/apis/inapppayments/docs/index.html

Related

Google Play Vs In-App Billing

So I'm planning to create an app that licenses and sells original photos in my android app where as users can directly purchase from other user these items and get a direct link from the app after purchase, the users who purchase another user's photo can upload the photo into other apps like IG/FB/Twitter/etc. As per google pay SECTION 2: Permissible Payment Transactions Terms of Service I cannot use Google pay to sell digital goods....however in-app billing is only for digital content limited to the scope of my app...can someone please clarify what the hell is going on with google ?
To answer your question, like what you have mentioned above, In-app billing is only limited to your app, if you allow the user to use the digital photo outside of your app, it is not allow.
You are looking at Google Pay ToS, which is not designed for mobile in-app purchases. For in-app purchases, you will be using Google Play Billing (https://developer.android.com/google/play/billing/billing_overview). Sorry for the confusion.

How to implement in-app purchase of application Android?

I have created a android application. Subscription is free. However I have put ads inside application. Now I want provide option within app where people can buy ad-free version. And also provide option to restore purchase.
I went through Android docs didn't understand anything. Please provide a good tutorial.
Hey I had worked on InApp Purchase recently and I've successfully integrated in my existing app and ready to make it live. Initially when i had started doing this I've downloaded google InApp Billing Example called "Trivial Drive" from here.
But it didn't help me much as it has lots of issues and bugs, So I've decided do it on my own from scratch using new v3 api which you can find here. This tutorial has clear explanation that would help you and also if you have time, see this youtube video where google employee had explained clearly how to integrate it.
Also if you want quick example, I've a sample app which you can download from here.
The following video also explains how to integrate InApp Purchase. Please go through it.
https://www.youtube.com/watch?v=-h2ESH71hAI
Thank you
Refer this question on SO Implementing In App purchases in Android?. Also for official documentation of The In-app Billing Version 3 API refer this link http://developer.android.com/google/play/billing/api.html
This is how you create In app purchase inside your app.
1) In your developers console, go to your application and create a in app product(Name it as Ad-Free Access or what ever).(Note: to create a in app product you need to have a merchant account).
2) If you have a merchant account ready, create a InApp Product with the type of Subscription(One time or monthly or yearly) and price.
3) Once you have created the InApp product successfully, you can prompt the user to purchase an InApp product by quering a list of in app products in your app and ask user to purchase them.
Here is a link to query the InApp products:
4) Once a user purchase the product, based on the purchase status of the product, you can disable the ads in your app.
The Simple and very easy way to implement in-app through a library anjilab.
Just add the dependecy
implementation 'com.anjlab.android.iab.v3:library:1.0.44'
Add Permission, implement methods and you done.
For any issues you can see here
issues

Android In-App billing only one time on PayPal SDK

I'm building an android app, but I have a problem on PayPal SDK. Pratically, I want to pay the app only one time, like a managed item on official Google In-App Billing. So, if I change the device, I don't want pay again!
I'm reading the official docs, but I can't find something about this...
Actually, I'm following the "Single payment" but is like a unmanaged item on official Google In-App Billing...
How can I manage this?
Thanks!

share in-app purchase on ios and android

Am I allowed to share in-app purchases across ios and android?
I would have a free multiplayer game that is on android and ios.
The user could purchase a digital item with the in-app billing api in his android app. I would verify the purchase on the game server and add the item to his online account. When the user opens the ios app and logs into his account, he would stil have the item since its saved on the server.
This would also be done in reverse.
Does the android or ios policy allow this? Or must digital goods purchased on one platform only be available there?
I have already seen games that do this but I wanted to make sure.
Section 11 of the App Store Review Guidelines details the rules of in-app purchases. The short answer is no, you can not share in-app purchases between Android and iOS.

google checkout android payment?

I am building a shopping cart application for android. My customers already have google checkout merchants accounts and they want to sell their goods and receive payments in their google checkout merchants accounts.
I have an activity that displays user-selected goods and payment. I need to know what is the info I'll send to google and service links that can make the app users pay for selected goods in merchants account?
Not clear enough, but this might help you:
http://code.google.com/apis/checkout/developer/Google_Checkout_Custom_Processing_How_To.html
http://developer.android.com/guide/market/billing/billing_overview.html
Good luck :)
I assume you want to implement an Android native app and not a web app. You may want to start with the Android In-App Billing documentation:
http://developer.android.com/guide/market/billing/index.html
Also please make to read the Android Market Developer Distribution Agreement:
http://www.android.com/us/developer-distribution-agreement.html

Categories

Resources