61
Google Confidential and Proprietary Making Money with Android Applications July 17, 2013 [email protected]

Making money with android applications

Embed Size (px)

Citation preview

Page 1: Making money with android applications

Google Confidential and Proprietary

Making Money with Android Applications

July 17, [email protected]

Page 2: Making money with android applications

Google Confidential and Proprietary

Lets be Rich !

Page 3: Making money with android applications

Google Confidential and Proprietary

Lets be Rich !

No Secret Formula: Jini make me rich

Page 4: Making money with android applications

Google Confidential and Proprietary

Agenda

Awesome Product

Page 5: Making money with android applications

Google Confidential and Proprietary

Agenda

Awesome Product

Revenue Model

Page 6: Making money with android applications

Google Confidential and Proprietary

Agenda

Awesome Product

Revenue Model

Users/Buyers

Page 7: Making money with android applications

Google Confidential and Proprietary

Agenda

Measure / Improve

Revenue Model

Users/Buyers

Awesome Product

Page 8: Making money with android applications

Google Confidential and Proprietary

Awesome Product

Awesome Product

Useful, worth buying

Page 9: Making money with android applications

Google Confidential and Proprietary

Awesome Product cont.

● Catchy name● Increase App

discovery

Entice Users

Page 10: Making money with android applications

Google Confidential and Proprietary

Catchy Application name

Experiment with these sites to come up with a great name.

PunGeneratorNameChkThefreedictionaryWerdMergeWikiRhymer

Create Good Application Name

Page 11: Making money with android applications

Google Confidential and Proprietary

Awesome Product● Smooth UI● Easy to use● Loads fast● Innovative design

● Catchy name● Increase App discovery

Entice Users

Great U

ser Experience

Page 12: Making money with android applications

Google Confidential and Proprietary

Awesome Product cont.

● Less bandwidth● Less memory● Less battery

● Smooth UI● Easy to use● Loads fast● Innovative design

● Catchy name● Increase App discovery

Entice Users

Great U

ser E

xperience

Resource Management

Page 13: Making money with android applications

Google Confidential and Proprietary

Awesome Product cont.

● Less bandwidth● Less memory● Less battery

● User engagement● Constantly updated

● Smooth UI● Easy to use● Loads fast● Innovative design

● Catchy name● Increase App discovery

Entice User

Great U

ser E

xperience

Resource Management

Ret

ain

Use

r

Page 14: Making money with android applications

Google Confidential and Proprietary

Revenue Models

Revenue Model

Page 15: Making money with android applications

Google Confidential and Proprietary

Revenue Models

Revenue Model

Free: Ads funded

PaidIn-App

Freemium Premium

Subscriptions

Page 16: Making money with android applications

Google Confidential and Proprietary

Revenue Models

Free: Ads funded

Page 17: Making money with android applications

Google Confidential and Proprietary

Revenue Models

You publish ads in your Application

Advertiser provides ads

Advertiser pays for ads

based on user clicks

You make money

Page 18: Making money with android applications

Google Confidential and Proprietary

Flexible Ad Formats

SMART BANNER

BANNER

Page 19: Making money with android applications

Google Confidential and Proprietary

Ads funded

Admob (Ad platforms)Does all heavy lifting

Publisher

Internet

Page 20: Making money with android applications

Google Confidential and Proprietary

Ads funded: 4 easy steps

Signup at admob.com

Page 21: Making money with android applications

Google Confidential and Proprietary

Ads funded: 4 easy steps

Signup at admob.com

Add admob library/sdk to project

Page 22: Making money with android applications

Google Confidential and Proprietary

Ads funded: 4 easy steps

Signup at admob.com

Add admob library/sdk to project

</manifest><uses-permission android:name="android.permission.INTERNET" />

Page 23: Making money with android applications

Google Confidential and Proprietary

Ads funded: 4 easy steps

Signup at admob.com

Add admob library/sdk to project

Add Permission to use internet

Specify Ad look and feel

Page 24: Making money with android applications

Google Confidential and Proprietary

Ads funded<LinearLayout ……

<com.google.ads.AdView

xmlns:googleads="http://schemas.android.

com/apk/lib/com.google.ads"

android:id="@+id/ad"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

googleads:adSize="BANNER"

googleads:adUnitId="@string/admob_id" />

………

</LinearLayout>

Page 25: Making money with android applications

Google Confidential and Proprietary

Ads funded Mediation<LinearLayout ……

<com.google.ads.AdView

xmlns:googleads="http://schemas.android.

com/apk/lib/com.google.ads"

android:id="@+id/ad"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

googleads:adSize="BANNER"

googleads:adUnitId="@string/admob_id" />

………

</LinearLayout>

Page 26: Making money with android applications

Google Confidential and Proprietary

Better Ads ExperienceTargeted Ads

public View onCreateView (LayoutInflater inflater, ViewGroup container,

Bundle savedInstanceState) { ……..

View v = inflater.inflate(R.layout.main, container, false);

mAdStatus = (TextView) v.findViewById(R.id.status);

mAdView = (AdView) v.findViewById(R.id.ad);

mAdView.setAdListener(new MyAdListener());

AdRequest adRequest = new AdRequest();

adRequest.addKeyword("shoes");

mAdView.loadAd(adRequest); return v;

}

Page 27: Making money with android applications

Google Confidential and Proprietary

Better Ads Experience

Targeted Ads

User controls Ads

Page 28: Making money with android applications

Google Confidential and Proprietary

Better Ads Experience

Targeted Ads

User controls Ads

Incentivize users to click on Ads

Page 29: Making money with android applications

Google Confidential and Proprietary

Better Ads Experience

Targeted Ads

User controls Ads

Incentivize users to click on Ads

Make beautiful Ads http://code.google.com/mobile/ads/

Page 30: Making money with android applications

Google Confidential and Proprietary

Better Ads Experience

Targeted Ads

User controls Ads

Incentivize users to click on Ads

Make beautiful Ads

Don’t be Evil

Page 31: Making money with android applications

Google Confidential and Proprietary

Revenue Models

Paid

Page 32: Making money with android applications

Google Confidential and Proprietary

Paid

Page 33: Making money with android applications

Google Confidential and Proprietary

Revenue Models

In-App Billing

Page 34: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Page 35: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Page 36: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Get details of items

Purchase flow

Page 37: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Application Google Play Server

Does all heavy lifting

Queries details synchronously

Page 38: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Application Google Play

Install Billing library

Page 39: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

ApplicationAdd interface to talk to library IInAppBillingService.aidl

Google Play

Install Billing library

Page 40: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Application

Add interface

Add permission to use library<uses-permission android:name="com.android.vending.BILLING" />

Google Play

Install Billing library

Page 41: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Application

Add Interface

Permission to use lib

Connect to lib public void onCreate (Bundle savedInstanceState) { IabHelper mHelper = new IabHelper( .... );}

Google Play

Install Billing library

Page 42: Making money with android applications

Google Confidential and Proprietary

Implementing In-App Billing

Application

query in-app item detailsmake/launch purchase flowquery all purchaseconsume purchase

Google Play

Server

Cache

Page 43: Making money with android applications

Google Confidential and Proprietary

Revenue Models

Subscriptions

Page 44: Making money with android applications

Google Confidential and Proprietary

Subscriptions

Application Google Play

query in-app item detailsmake/launch purchase flowquery all purchase

Page 45: Making money with android applications

Google Confidential and Proprietary

Increase Reach/Buyers

Users/Buyers

Page 46: Making money with android applications

Google Confidential and Proprietary

Increase Reach/Buyers

Increase device coverage● Read Supporting Multiple Screens

Customize for tablets● Use 9-patch drawables

Page 47: Making money with android applications

Google Confidential and Proprietary

Increase Reach/Buyers

Globalize● 2/3rd revenue from outside US

Page 48: Making money with android applications

Google Confidential and Proprietary

Increase Reach/Buyers

Accessibility support● ~1 billion have accessibility needs

Page 49: Making money with android applications

Google Confidential and Proprietary

Increase Reach/Buyers

Word of

Mouth

Social engagement

G+ APIs

Reply to reviews

Constantly update

Blog/ask others to

blog

Ask for review/ratin

g

Don’t reach wrong

audience

Page 50: Making money with android applications

Google Confidential and Proprietary

Increase Reach/Buyers

Blogging can increase and almost double your leads.

This is a great way to connect to people directly andget feedback.

Page 51: Making money with android applications

Google Confidential and Proprietary

Increase Reach/Buyers

Marketing

Incentivize users

Bulk sales

Loyalty programs

Co-marketing

Cross promotions

Timely Promotions

Campaigns

Page 52: Making money with android applications

Google Confidential and Proprietary

Validate / Measure and Improve

Measure/Improve

Page 53: Making money with android applications

Google Confidential and Proprietary

Validate / Measure and Improve

Devconsole/Analytics● No of users● Geo/Device● Uninstalls● Crashes

Page 54: Making money with android applications

Google Confidential and Proprietary

Validate / Measure and Improve

Check Optimization Tips

Page 55: Making money with android applications

Google Confidential and Proprietary

In App testing

Testing● Test using reserved/mock product IDs/products● Create Beta groups for testing and refund money● Use Sandbox environment. Add test accounts

Page 56: Making money with android applications

Google Confidential and Proprietary

Summary

Page 57: Making money with android applications

Google Confidential and Proprietary

Summary: Awesome Product

Useful, worth buying

Awesome Product

Page 58: Making money with android applications

Google Confidential and Proprietary

Summary: Increase Reach/Buyers

Reach all target audience and don’t reach wrong audience

Users/Buyers

Page 59: Making money with android applications

Google Confidential and Proprietary

Summary: Revenue Models

Select Revenue Model based on application, target audience and competition

Revenue Model

Page 60: Making money with android applications

Google Confidential and Proprietary

Summary: Validate / Measure and Improve

Test with real users before releasing app

Measure/Improve

Page 61: Making money with android applications

Google Confidential and Proprietary

Thanks and Questions?

Send feedback to:[email protected]