SlideShare a Scribd company logo
We're an independent
design & development
agency.
In-app billing
IVAN MARIĆ
Average people earn money
doing things they don’t like.
Rich people follow their
passion.
- STEVE SIEBOLD
GOOGLE PLAY
MONETIZE
Premium - simple and convient
Freemium - durable and consumable digital goods
Subscription - continuing revenue stream
AdMob Ads - easy way to earn revenue
Total revenue by model
https://support.google.com/googleplay/android-developer/table/
3539140?hl=en&rd=1
MERCHANT ACCOUNT
Google Play Developer Console - Financial reports
Not supported in all countries
IMPLEMENTATION
Sample project
https://github.com/googlesamples/android-play-billing
Consumable good
SubscriptionDurable good
ADD AIDL FILE
IInAppBillingService.aidl
<sdk>/extras/google/play_billing/
src/main/aidl/com.android.vending.billing
IInAppBillingService.java
ANDROID MANIFEST
<uses-permission android:name="com.android.vending.BILLING" />
Upload to Alpha/Beta channel
Intent serviceIntent = new Intent(
“com.android.vending.billing.InAppBillingService.BIND");

serviceIntent.setPackage(“com.android.vending”);


context.bindService(serviceIntent,
serviceConnection,
Context.BIND_AUTO_CREATE);
context.unbindService(serviceConnection);
Service connection
private ServiceConnection serviceConnection = new ServiceConnection() {



@Override

public void onServiceConnected(ComponentName name, IBinder service) {

billingService = IInAppBillingService.Stub.asInterface(service);

int r = billingService.isBillingSupported(3, packageName, itemType);

if (r == 0) {

// Billing supported

return;

}

}

};
Service connection
private ServiceConnection serviceConnection = new ServiceConnection() {



@Override

public void onServiceConnected(ComponentName name, IBinder service) {

billingService = IInAppBillingService.Stub.asInterface(service);

int r = billingService.isBillingSupported(3, packageName, "inapp");

if (r == 0) {

// Billing supported

return;

}

}

};
Service connection
private ServiceConnection serviceConnection = new ServiceConnection() {



@Override

public void onServiceConnected(ComponentName name, IBinder service) {

billingService = IInAppBillingService.Stub.asInterface(service);

int r = billingService.isBillingSupported(5, packageName, "subs");

if (r == 0) {

// Billing supported

return;

}

}

};
Service connection
Response
GET DETAILS
Information about the item
Localised
Items are immutable
// Split the sku list in blocks of no more than 20 elements.
Bundle querySkus = new Bundle();

querySkus.putStringArrayList("ITEM_ID_LIST", skuPartList);
Bundle skuDetails = billingService.getSkuDetails(
3, packageName, itemType, querySkus);
Bundle skuDetails = billingService.getSkuDetails(
3, packageName, itemType, querySkus);
GET PURCHASES
User owned items
Use for restore
Bundle ownedItems = billingService.getPurchases(
3, packageName, itemType, continueToken);
BUY INTENT
Get PendingIntent to launch the purchase flow
Purchase flow is handle by Google Play
Response for purchase order received in onActivityResult
Bundle buyIntent = billingService.getBuyIntent(
3, packageName, sku, itemType, payload);
PendingIntent intent = buyIntent.getParcelable("BUY_INTENT");
activity.startIntentSenderForResult(intent.getIntentSender(),

requestCode, new Intent(), 0, 0, 0);
Bundle buyIntent = billingService.getBuyIntentToReplaceSkus(
5, packageName, oldSku, sku, "subs", payload);
PendingIntent intent = buyIntent.getParcelable("BUY_INTENT");
activity.startIntentSenderForResult(intent.getIntentSender(),

requestCode, new Intent(), 0, 0, 0);
Subscription upgrade/downgrade
Infinum Android Talks #18 - In-app billing by Ivan Marić
CONSUME ITEM
Purchased item is owned by the user forever
Can not purchase an item more than once
Remove item from the owner to purchase again
// Don’t call this on UI thread
billingService.consumePurchase(3, packageName, token);
TESTING
STATIC TEST
Used for testing response models
Verify signatures
android.test.purchased, android.test.canceled,
android.test.refunded, android.test.item_unavailable
REAL TEST
Setup test accounts in Google Developer Console
Real purchase without money transaction
All subscriptions last one day
Missing orderId property
SECURITY
SIGNED RESPONSES
Verify purchase JSON response
Licence key as public key portion
Best practice to do this on a server side
GOOGLE PLAY DEVELOPER API
Use www.googleapis.com for checking purchase status
Manage subscriptions
https://www.reddit.com/r/Piracy/comments/3eo8sj/
antipiracy_measures_on_android_custom_roms/
HACKER APPS
Rooted devices
Change the behaviour of the system and apps
PROTECT YOUR CONTENT
Do not provide content with .apk
Encrypt content with device specific key
Recoverable data
DOCUMENTATION
http://developer.android.com/google/play/billing/index.html
GOOGLE SERVICE
Overview
Version 3 API
Security and Design
Testing In-app Billing
Administering In-app Billing
http://developer.android.com/training/in-app-billing/index.html
TRAINING
Preparing Your App
Establishing Products for Sale
Purchasing Products
Testing Your App
WATCH OUT FOR
Developer payload
Calling consume request on Main thread
Subscription downgrade/upgrade (v3 / v5)
AIDL file (https://github.com/googlesamples/android-play-billing/issues/3)
Limitations
http://stackoverflow.com/questions/13717091/android-error-while-
retrieving-information-from-server-rpcs-5aec-0-in-google
HTTP://BLOG.GOFORYT.COM/
VALIDATING-ANDROID-APP-
PURCHASES-LARAVEL/
Any questions?
IVAN.MARIC@INFINUM.CO
IVAN MARIĆ
Visit infinum.co or find us on social networks:
infinum.co infinumco infinumco infinum

More Related Content

PPT
[Android] Google Play in app billing
KEY
Android In-App Billing @ Droidcon 2011
PDF
Android In-app Billing @ Droidcon Murcia
KEY
Android in-app billing @ Google DevFest Barcelona 2012
KEY
In-App Purchase
PPTX
Monetize your app_with_google_subscriptions_v3_services_intuit
PDF
Testing In App Billing
KEY
Android In-App Billing @ Barcelona GTUG
[Android] Google Play in app billing
Android In-App Billing @ Droidcon 2011
Android In-app Billing @ Droidcon Murcia
Android in-app billing @ Google DevFest Barcelona 2012
In-App Purchase
Monetize your app_with_google_subscriptions_v3_services_intuit
Testing In App Billing
Android In-App Billing @ Barcelona GTUG

Similar to Infinum Android Talks #18 - In-app billing by Ivan Marić (20)

PDF
Aiy project, el día que le hablé a una caja
DOCX
How to create android push notifications with custom view
PDF
Samsung IAP SDK
PPTX
How to make money with the Windows Store
PDF
Ideation of the app, Qadim and Virtual Prototype
PDF
Introduction to Visualforce for Mobile Devices
PDF
Advanced approach to Google Universal App campaigns.
PPTX
SBM Presentation Google Pay (wecompress.com).pptx
PPTX
Social Gold in-Flash Webinar Jan 2010
PPTX
Social Gold In-Flash Payments Webinar
PDF
Android Quiz App – Test Your IQ.pdf
PPTX
Integrating GoogleFit into Android Apps
PPTX
"Магазин приложений GetJar: дистрибуция и монетизация", James Mooney, Sales a...
PPTX
Real time ecommerce analytics with MongoDB at Gilt Groupe (Michael Bryzek & M...
PDF
Making money with android applications
PPTX
Google+ sign in for mobile & web apps
PDF
Rethinking your mobile tracking strategy by Ekaterina Petrakova
PPTX
Hieu Xamarin iOS9, Android M 3-11-2015
PDF
Google Wallet: The Fanatics Experience
PDF
All about engagement with Universal Analytics @ Google Developer Group NYC Ma...
Aiy project, el día que le hablé a una caja
How to create android push notifications with custom view
Samsung IAP SDK
How to make money with the Windows Store
Ideation of the app, Qadim and Virtual Prototype
Introduction to Visualforce for Mobile Devices
Advanced approach to Google Universal App campaigns.
SBM Presentation Google Pay (wecompress.com).pptx
Social Gold in-Flash Webinar Jan 2010
Social Gold In-Flash Payments Webinar
Android Quiz App – Test Your IQ.pdf
Integrating GoogleFit into Android Apps
"Магазин приложений GetJar: дистрибуция и монетизация", James Mooney, Sales a...
Real time ecommerce analytics with MongoDB at Gilt Groupe (Michael Bryzek & M...
Making money with android applications
Google+ sign in for mobile & web apps
Rethinking your mobile tracking strategy by Ekaterina Petrakova
Hieu Xamarin iOS9, Android M 3-11-2015
Google Wallet: The Fanatics Experience
All about engagement with Universal Analytics @ Google Developer Group NYC Ma...
Ad

More from Infinum (20)

PDF
Infinum Android Talks #20 - Making your Android apps fast like Blue Runner an...
PDF
Infinum Android Talks #20 - DiffUtil
PDF
Infinum Android Talks #20 - Benefits of using Kotlin
PDF
Infinum iOS Talks #4 - Making our VIPER more reactive
PDF
Infinum iOS Talks #4 - Making your Swift networking code more awesome with Re...
PDF
Infinum Android Talks #13 - Using ViewDragHelper
PDF
Infinum Android Talks #14 - Log4j
PDF
Infinum Android Talks #9 - Making your app location-aware
PDF
Infinum Android Talks #14 - Gradle plugins
PDF
Infinum Android Talks #14 - Facebook for Android API
PDF
Infinum Android Talks #19 - Stop wasting time fixing bugs with TDD by Domagoj...
PDF
Infinum Android Talks #18 - Create fun lists by Ivan Marić
PDF
Infinum Android Talks #18 - How to cache like a boss by Željko Plesac
PDF
Infinum iOS Talks #2 - VIPER for everybody by Damjan Vujaklija
PDF
Infinum iOS Talks #2 - Xamarin by Ivan Đikić
PDF
Infinum iOS Talks #1 - Swift under the hood: Method Dispatching by Vlaho Poluta
PDF
Infinum iOS Talks #1 - Swift done right by Ivan Dikic
PDF
Infinum iOS Talks #1 - Becoming an iOS developer swiftly by Vedran Burojevic
PDF
Infinum Android Talks #17 - Testing your Android applications by Ivan Kust
PDF
Infinum Android Talks #17 - A quest for WebSockets by Zeljko Plesac
Infinum Android Talks #20 - Making your Android apps fast like Blue Runner an...
Infinum Android Talks #20 - DiffUtil
Infinum Android Talks #20 - Benefits of using Kotlin
Infinum iOS Talks #4 - Making our VIPER more reactive
Infinum iOS Talks #4 - Making your Swift networking code more awesome with Re...
Infinum Android Talks #13 - Using ViewDragHelper
Infinum Android Talks #14 - Log4j
Infinum Android Talks #9 - Making your app location-aware
Infinum Android Talks #14 - Gradle plugins
Infinum Android Talks #14 - Facebook for Android API
Infinum Android Talks #19 - Stop wasting time fixing bugs with TDD by Domagoj...
Infinum Android Talks #18 - Create fun lists by Ivan Marić
Infinum Android Talks #18 - How to cache like a boss by Željko Plesac
Infinum iOS Talks #2 - VIPER for everybody by Damjan Vujaklija
Infinum iOS Talks #2 - Xamarin by Ivan Đikić
Infinum iOS Talks #1 - Swift under the hood: Method Dispatching by Vlaho Poluta
Infinum iOS Talks #1 - Swift done right by Ivan Dikic
Infinum iOS Talks #1 - Becoming an iOS developer swiftly by Vedran Burojevic
Infinum Android Talks #17 - Testing your Android applications by Ivan Kust
Infinum Android Talks #17 - A quest for WebSockets by Zeljko Plesac
Ad

Recently uploaded (20)

PDF
top salesforce developer skills in 2025.pdf
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPT
Introduction Database Management System for Course Database
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
Online Work Permit System for Fast Permit Processing
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
How Creative Agencies Leverage Project Management Software.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
System and Network Administraation Chapter 3
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
history of c programming in notes for students .pptx
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
top salesforce developer skills in 2025.pdf
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
How to Migrate SBCGlobal Email to Yahoo Easily
VVF-Customer-Presentation2025-Ver1.9.pptx
Introduction Database Management System for Course Database
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Online Work Permit System for Fast Permit Processing
Softaken Excel to vCard Converter Software.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
How Creative Agencies Leverage Project Management Software.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Operating system designcfffgfgggggggvggggggggg
Navsoft: AI-Powered Business Solutions & Custom Software Development
Design an Analysis of Algorithms I-SECS-1021-03
System and Network Administraation Chapter 3
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
history of c programming in notes for students .pptx
CHAPTER 2 - PM Management and IT Context
Adobe Illustrator 28.6 Crack My Vision of Vector Design

Infinum Android Talks #18 - In-app billing by Ivan Marić