Discussion Forums  >  Uncategorized

Replies: 4    Views: 516

shockme66
Apple Fan
Profile
Posts: 81
Reg: Sep 12, 2011
Easton PA
1,010
11/02/11 06:29 AM (14 years ago)

PayPal in App Purchase example?

Does anyone have an app in which they are using paypal as a service for in app purchases? I would like to see how this was implemented. Thanks for the help!
 
Parker @ buzztouch
buzztouch Evangelist
Profile
Posts: 1395
Reg: May 09, 2011
Pacific Grove, ...
24,500
like
11/02/11 01:42 PM (14 years ago)
 
shockme66
Apple Fan
Profile
Posts: 81
Reg: Sep 12, 2011
Easton PA
1,010
like
11/02/11 06:03 PM (14 years ago)
Thanks
 
Yash Kumar
buzztouch Evangelist
Profile
Posts: 66
Reg: Jan 29, 2012
Jharkhand
660
like
04/25/12 01:13 AM (13 years ago)
Yup Got The Solution . . . I have added successfully Paypal (In-App Payment) in my buzztouch application . If you want help then contact me in skype - agarwal.yeshu Gmail - [email protected] here is the screen shot https://www.paypal-community.com/t5/image/serverpage/image-id/4133i4DFA47F25ADED08E/image-size/original?v=mpbl-1&px=-1 I have Modified BT_screen_menuListSimple By Adding This Line ............................................................. if(titleText.equalsIgnoreCase("donate")){ if (mChildHandler != null) { Message msg = mChildHandler.obtainMessage(); msg.obj ="Hello";// mMainHandler.getLooper().getThread().getName() + " says Hello"; mChildHandler.sendMessage(msg); Log.i("from:OFFHOOK", "Send a message to the child thread - " + (String)msg.obj); } Intent paypalIntent = new Intent(BT_screen_menuListSimple.this, Donate.class); startActivityForResult(paypalIntent, 1);; } if(titleText.equalsIgnoreCase("buy now")){ if (mChildHandler != null) { Message msg = mChildHandler.obtainMessage(); msg.obj ="Hello";// mMainHandler.getLooper().getThread().getName() + " says Hello"; mChildHandler.sendMessage(msg); Log.i("from:OFFHOOK", "Send a message to the child thread - " + (String)msg.obj); } Intent paymentIntent = new Intent(BT_screen_menuListSimple.this, Payment.class); startActivityForResult(paymentIntent, 2); } } }; ...................................................... After that i make a new java file namely "Payment" and "Donate" then i followed the steps which had given in Paypal Documentation
 
Tony @ Buzztouch
buzztouch Evangelist
Profile
Posts: 528
Reg: Mar 05, 2011
Saint Louis, Mi...
24,620
like
05/22/12 06:55 PM (13 years ago)
any update on this yet? If so please advise need to start
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.