As you may know Google Play in-app review dialog is an upcoming feature
Here is a working proof of concept app : IAR Test App
I wanted to use this unofficial feature, I did a search and I found this:
Exploring in-app reviews: part 1
But there is no decompiled source code, Can someone share with us a working code?
Google Play's In-App Reviews is now available here.
Related
I'm developing an app in which i'm planning to add a donate feature, but googling about it, found that when using paypal or other 3rd party for this feature attracts google to suspend you're app.
How to implement a Donate feature and also make sure that google doesn't suspend my app?
If any option any example with same would also help me in ways.
if paypal an example link or if google wallet an example.
Thanks in advance
A common thing I see a lot is to make 2 versions of your app, 1 free and 1 donate version. Or heck, you could just use Google Play In-app Billing and offer some kind of small extra feature for the payment.
I am about to implement inApp Purchases in my app, but Iam totally confused about which way to go. On Android developer site there are different aproaches, but it is not clear why there are 2?:
http://developer.android.com/training/in-app-billing/index.html
and
https://developer.android.com/google/play/billing/api.html
I feel for you. I found the the tuts on this guy's blog very useful for cutting through the confusion. If you follow his process, you can, I attest, successfully implement in-app billing. I've linked to the older tutorial, I followed, but he's got a newer one as well (see the link on that page), which includes Github-hosted source code and updates to support the latest Android library changes.
Here you can find TrivialDrive example app utilizing In-app Billing V3. It's sample app directly from Google.
The most important class is IABHelper, source code here.
The link posted by JASON G PETERSON is pointing to a deprecated version of In-app Billing V2. Here's link to the version 3: http://blog.blundell-apps.com/simple-inapp-billing-payment-v3/
I am using AndroidBillingLibrary for purchasing. But I don't know how to get the price of purchase (in-app item) in code. If it possible using the library, because this library based on In-app Billing API version 2? I saw that it is possible in API version 3 link
This is impossible. But I implemented in-app Billing version 3. This is not so hard, there is a great and very simple documentation link. Also Google provide a sample which anyone can download and use how to install sample
if you use API3 of the in-app billing library, this feature is already there.
it seems it's called "getSkuDetails" .
for more information, watch the google IO 2013 lecture "In-App Billing Version 3" : https://developers.google.com/events/io/sessions/324958374 , slides 104-107 .
you can also read the documentation...
sadly, even though they've added many nice features and made it easier, they've removed the feature of unmanaged purchases, but that's a different story.
Currently I Am developing an magazine reader app. In my app I want to provide the Subscription facility where user can have monthly subscriptions. I am having a doubt that is there a subscription facility in android market. I went through the Google docs.I fond that now its not available. But still I am having a doubt and little bit confused. Can any one tell me about this. Any help will be appreciated.I really want to clarify this for the further movement.
Yes, there is an API that facilitates subscription. It's called In-app Billing and it's one of the most difficult to use payment APIs I ever encountered.
The subscription based payment model was recently announced, and as Bill The Ape has said, it is quite difficult to use and understand.
Some useful links:
In-app billing overview
Implementing in-app billing with a tutorial
Implementing subscriptions
You can play around with the sample application, and re-use bits for your own app. If you do, make sure you read this so that the app is secure.
What you're looking for is:
https://developer.android.com/guide/google/play/billing/billing_subscriptions.html
I actually disagree with Bill The Ape. The documentation and sample code is pretty decent. Google has a sample application that demonstrates subscriptions. The only issue is testing subscriptions, that's where there's very little support
Does anyone know how to make a simple app in android dev eclipse with a simple in app purchase item like 50 coins for 0.50p in android because there are absolutely no tutorials out there and the android in app billing example isn't exactly helpful.
The current version of Android In App Purchase is V3
http://blog.blundellapps.com/simple-inapp-billing-payment-v3/
My blog post is titled Simple In App Purchase v2, so that might help:
http://blog.blundellapps.com/simple-inapp-billing-payment/
I've also recently written an overview with a flowchart to try and explain InApp Purchase (not so simple):
http://blog.blundellapps.com/overview-of-android-in-app-billing-flowchart/ (v2)
Does this library (AndroidBillingLibrary) solve your problem?
Attention!
Here is answer for IAB v2
And you, most likely, looking for v3 (which is much simpler)
Don't get in this trap, as I did...
Google I/O 2013 - In-App Billing Version 3 - http://www.youtube.com/watch?v=DgcJPIRpfSk
You can check example with library for inn app billing.
Example