7

Possible Duplicate:
How integrate Paypal in android Application?

does android supports In-App payment through PayPal or we need to go with Google Checkout. Can anyone please help me with this.....

Community
  • 1
  • 1
code_finder
  • 1,370
  • 2
  • 21
  • 39
  • possible double: http://stackoverflow.com/questions/7631841/how-integrate-paypal-in-android-application – thepoosh May 17 '12 at 08:27
  • May this helps you: http://stackoverflow.com/questions/2787738/paypal-as-in-app-payment-model-in-android – Bruno Bieri May 17 '12 at 08:32
  • hi, while executing sample code given by PayPal getting error. it is loading and on screen it is showing as "Initializing " & after some time giving message as "failure . Could not initialize the paypal library". can you help me with this...... – code_finder May 18 '12 at 11:50

2 Answers2

13

There are two points to note:

  1. PayPal has an in-app payment system which will work on Android.
  2. Google Market will not allow in-app payments which aren't Google Checkout.

So, you can add in-app payment using PayPal as long as you don't distribute the app via Google Play.

Terence Eden
  • 14,034
  • 3
  • 48
  • 89
  • hi Terence Eden, actually i did not understand what you are saying about "don't distribute the app via Google Play".The doubt raised for me is, if we register our in android market means i think it will get distributed via Google play. then is it safe to use Paypal in my app or not.... Actually i am new to android. so i am in a dilemma about this. – code_finder May 17 '12 at 12:19
  • No, you cannot distribute the app through Google Play. You can distribute it yourself or in other stores. – Terence Eden May 17 '12 at 12:47
  • 7
    To update the 2. Part of the Answer: there are two exceptions: 1 products which are also hardware (cinema tickets) and 2 digital products which are also available and usable OUTSIDE of the app http://play.google.com/intl/ALL_de/about/developer-content-policy.html#showlanguages – patrics Dec 01 '12 at 13:46
  • Hi @TerenceEden, are there any markets we can distribute the payment-selfmade apps through?3Q! – Suge Sep 27 '13 at 05:48
  • @TerenceEden then why Paypal Android SDK exists? – Muhammad Babar Nov 21 '13 at 07:21
  • Because you can distribute Android apps via many different stores. You are not restricted to Google Play. You can also distribute your apps independently. – Terence Eden Nov 28 '13 at 10:11
  • Article of May 2014: http://www.theverge.com/2014/5/15/5721192/google-play-store-android-paypal-integration – Mathias Conradt Aug 04 '14 at 19:19
  • @patrics: Are these exception how Skype or Spotify sell in-app purchases (i.e. Skype credit) because this credit can also be used outside of Android app? – MSquare Oct 14 '14 at 17:22
  • @MSquare yes, as far as i know: the products can be used outside the google/android ecosystem and therefore can be purchased with other systems – patrics Oct 15 '14 at 12:43
1

yes, Android Supports in Application purchase through Paypal.I have Done it in my application.

First U have to make Test account on Paypal Sandbox. using that you can test your application perfectly working or not. after testing you can add your Live Application ID in to your source code. if you need I can give my source code.

Bhavesh Patadiya
  • 25,740
  • 15
  • 81
  • 107
  • 2
    Hi Bhavesh,could you please provide source code out here.So that all of us can use and learn.Further,you mean we can integrate paypal libraries on our app,and we can make it available on playstore – laaptu Jan 18 '13 at 09:14
  • @laaptu did u got any solution for this? – Nishant May 02 '13 at 10:32
  • @Nishant: yes it is possible,I have recently uploaded an application that uses PayPal purchase ,you can find the functionality on video upload process on audition section. [Link](https://play.google.com/store/apps/details?id=com.britasiasuperstar) – laaptu May 03 '13 at 11:48
  • @Bhavesh can you please share your source code? – Shah Jun 19 '13 at 19:51
  • 1
    I am really confused as to PayPal integration into an Android app and distribution through Google Play. Google's agreement states: " All fees received by Developers for Products distributed via the Market must be processed by the Market's Payment Processor.". And Google supports PayPal as a payment processor??? Something smells fishy here. http://play.google.com/intl/ALL_us/about/developer-distribution-agreement.html – Johann Aug 04 '13 at 16:00
  • 2
    Does Google Play support PaylPal integration app? – Suge Sep 27 '13 at 05:55
  • 1
    As of May 2014, PayPal is supported: http://www.theverge.com/2014/5/15/5721192/google-play-store-android-paypal-integration – Mathias Conradt Aug 04 '14 at 19:20
  • 3
    That link http://www.theverge.com/2014/5/15/5721192/google-play-store-android-paypal-integration seems to suggest that Google Billing will provide PayPal as one of the payment options - NOT that you developer can directly integrate with PayPal SDK for billing. – Jasper May 12 '15 at 10:22