Have been looking at http://www.coronalabs.com/blog/2013/03/26/androidizing-your-mobile-app/#comment-38712
Re the code like below you have to place in main.lua:
local licensing = require( "licensing" ) licensing.init( "google" )
Q1 - I assume the normal practice is to have one build (re code) only and use this directly to build for both say IOS and Android?
Q2 - This being the case, I assume you have to put “am I on Android” type checks before hitting the code “licensing.init( “google” )” etc, else it would through an error?
Q3 - Is there a sample app somewhere that shows a simple hello world type app that has code ready to go for both IOS and Android (e.g. google play) that I could look at. i.e. to see where there are “is this an xx device” type check certain code.