Android App Development 09 : Publish & Monetize

Post on 13-May-2015

585 views 1 download

Tags:

Transcript of Android App Development 09 : Publish & Monetize

Publish & Monetize Anuchit Chalothornanoochit@gmail.com

9Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.

Preparing for your app release

● Config for your app, remove log call, provide version name, version code

● Building and signing using ADT● Testing release version of your app● Updating application resources for release● Prepare remote server and services that

your application depend on

Ref: http://developer.android.com/tools/publishing/publishing_overview.html

Generate private key

Using keytool for generate private key, use ADT sign your release app

$ keytool -genkey -v -keystore my-release-key.keystore

-alias alias_name -keyalg RSA -keysize 2048 -validity 10000

Ref: http://developer.android.com/tools/publishing/app-signing.html#setup

Developer Console

Google Play Developer Console

pro

Monetize your App

● Paid App○ not support in Thailand

● In-App Purchase○ not support in Thailand and can not use another

payment gateway● Free App with Ads

○ Better way● 3th Party App Store

○ Find other distribution channels

Monetize your App with Admob

● Admob Member● Accounting for payment; Check or PayPal● Fee is 30% of your revenue● Register your App● Add Admob to your App with Admob SDK

see example in SDK

End