<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Serge Jespers &#187; android</title>
	<atom:link href="http://www.webkitchen.be/category/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webkitchen.be</link>
	<description>Life as an Adobe platform evangelist</description>
	<lastBuildDate>Tue, 31 Jan 2012 17:35:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Displaying ads in your mobile AIR application</title>
		<link>http://www.webkitchen.be/2011/05/17/displaying-ads-in-your-mobile-air-application/</link>
		<comments>http://www.webkitchen.be/2011/05/17/displaying-ads-in-your-mobile-air-application/#comments</comments>
		<pubDate>Tue, 17 May 2011 08:37:52 +0000</pubDate>
		<dc:creator>Serge Jespers</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[admob]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[flexorg]]></category>
		<category><![CDATA[stagewebview]]></category>
		<category><![CDATA[uicomponent]]></category>

		<guid isPermaLink="false">http://www.webkitchen.be/?p=3418</guid>
		<description><![CDATA[I&#8217;ve seen a few Tweets from people who were asking about adding ads to their mobile AIR applications&#8230; Well&#8230; There&#8217;s actually a hidden gem in the AIR documentation&#8230; But&#8230; As most of you probably never read any docs ;-) I thought I&#8217;d highlight it here. The trick is simple&#8230; Use the StageWebView class. You set [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F05%2F17%2Fdisplaying-ads-in-your-mobile-air-application%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F05%2F17%2Fdisplaying-ads-in-your-mobile-air-application%2F&amp;source=sjespers&amp;style=normal&amp;service=bit.ly&amp;service_api=R_f11b21ad05448f9b4029b73b124e8d0e&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ve seen a few Tweets from people who were asking about adding ads to their mobile AIR applications&#8230; Well&#8230; There&#8217;s actually a <a href="http://help.adobe.com/en_US/as3/dev/WS901d38e593cd1bac3ef1d28412ac57b094b-8000.html#WS901d38e593cd1bac-7b2e067c12e72dd6960-8000" target="_blank">hidden gem in the AIR documentation</a>&#8230; But&#8230; As most of you probably never read any docs ;-) I thought I&#8217;d highlight it here.</p>
<p>The trick is simple&#8230; Use the StageWebView class. You set the StageWebView object viewport to cover the area in your application in which you want to display the ad. Then you load an HTML page that contains the code for requesting and displaying ads. And tadaaaa&#8230; You have ads in your mobile AIR application.</p>
<p>Here&#8217;s an example of an HTML page that loads an ad from <a href="http://www.admob.com/" target="_blank">AdMob</a>.</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Ad jig&lt;/title&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
    var admob_vars = {
    pubid: &#039;admob_pubID&#039;, // change to your publisher id
    bgcolor: &#039;ffffff&#039;, // background color (hex)
    text: &#039;000000&#039;, // font-color (hex)
    test: true, // test mode, set to false if non-test mode
    manual_mode: true
}; 

function showAd()
{
    _admob.fetchAd(document.getElementById(&#039;adspace&#039;));
}
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://mm.admob.com/static/iphone/iadmob.js&quot;&gt;&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
    body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body onload=&quot;showAd()&quot;&gt;
&lt;div id=&quot;adspace&quot;&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>The following ActionScript code will display the ad page in your mobile AIR application.</p>
<pre>//Set up web view object
var webView:StageWebView = new StageWebView();
webView.stage = this.stage;
var adViewPort = new Rectangle( 0, 0, this.stage.stageWidth, 60 );
webView.viewPort = adViewPort;
webView.addEventListener(ErrorEvent.ERROR, onWebViewError );
webView.addEventListener(LocationChangeEvent.LOCATION_CHANGING, onWebViewLocChanging );
webView.addEventListener(LocationChangeEvent.LOCATION_CHANGE, onWebViewLocChange ); 

//Copy the html file outside the app directory
var templateFile:File = File.applicationDirectory.resolvePath( "adview.html" );
var workingFile:File = File.createTempFile();
templateFile.copyTo( workingFile, true ); 

try
{
    webView.loadURL( workingFile.url );
}
catch (e:Error)
{
    trace( e );
} 

function onWebViewLocChange( event:LocationChangeEvent ):void
{
    trace( "Change to" + event.location );
    if( event.location != workingFile.url )
    {
        //Reset location back to our ad display page
        navigateToURL( new URLRequest( event.location ) );
        try
        {
            webView.loadURL( workingFile.url );
        }
        catch (e:Error)
        {
            trace( e );
        }
    }
} 

function onWebViewLocChanging( event:LocationChangeEvent ):void
{
    trace( "Changing " + event.location );
    event.preventDefault();
    navigateToURL( new URLRequest( event.location ) );
} 

function onWebViewError( error:ErrorEvent ):void
{
    trace( error );
}</pre>
<p>But what if you want to use the mobile Flex framework? Well&#8230; Sönke Rohde actually wrote a <a href="http://soenkerohde.com/2010/11/air-mobile-stagewebview-uicomponent/">wrapper</a> around the StageWebView class so you can use it as a Flex component. By using this wrapper it becomes as easy as adding this one line of code to your app.</p>
<pre>&lt;components:WebView source=&quot;adview.html&quot; width=&quot;300&quot; height=&quot;50&quot;/&gt;</pre>
<p>Note: This approach will most likely also work with other ad networks. Also not that this only works on mobile AIR applications. The example does not work in desktop applications, or when testing mobile applications on the desktop, due to local-versus-remote sandbox restrictions.</p>
<p>Kudos to Adobe&#8217;s learning resources team for putting this example together and to Sönke for creating the StageWebView UIComponent.</p>
<p>Now go make some money ;-)</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F05%2F17%2Fdisplaying-ads-in-your-mobile-air-application%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:500px; height:75px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.webkitchen.be/2011/05/17/displaying-ads-in-your-mobile-air-application/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Android activations visualized</title>
		<link>http://www.webkitchen.be/2011/02/24/android-activations-visualized/</link>
		<comments>http://www.webkitchen.be/2011/02/24/android-activations-visualized/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 08:06:18 +0000</pubDate>
		<dc:creator>Serge Jespers</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[devices]]></category>
		<category><![CDATA[activations]]></category>
		<category><![CDATA[market share]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[visualized]]></category>

		<guid isPermaLink="false">http://www.webkitchen.be/?p=3310</guid>
		<description><![CDATA[We all know that the device market is changing rapidly. We also know that Android is rapidly gaining market share but this video is still pretty amazing to see. It visualizes Android device activations from October 2008 until now. (Hat tip AndroidCentral)]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F02%2F24%2Fandroid-activations-visualized%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F02%2F24%2Fandroid-activations-visualized%2F&amp;source=sjespers&amp;style=normal&amp;service=bit.ly&amp;service_api=R_f11b21ad05448f9b4029b73b124e8d0e&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>We all know that the device market is changing rapidly. We also know that Android is rapidly gaining market share but this video is still pretty amazing to see. It visualizes Android device activations from October 2008 until now.</p>
<p style="text-align: center;"><iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/fqFpq9WXbJo" frameborder="0" allowfullscreen></iframe></p>
<p>(Hat tip <a href="http://www.androidcentral.com/android-activations-visualized-oct-08-jan-11" target="_blank">AndroidCentral</a>)</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F02%2F24%2Fandroid-activations-visualized%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:500px; height:75px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.webkitchen.be/2011/02/24/android-activations-visualized/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lapse It – time-lapse video app made with AIR for Android</title>
		<link>http://www.webkitchen.be/2011/01/27/lapse-it-time-lapse-video-app-made-with-air-for-android/</link>
		<comments>http://www.webkitchen.be/2011/01/27/lapse-it-time-lapse-video-app-made-with-air-for-android/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 07:50:48 +0000</pubDate>
		<dc:creator>Serge Jespers</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[lapse it]]></category>
		<category><![CDATA[time-lapse]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.webkitchen.be/?p=3248</guid>
		<description><![CDATA[I just came across this very nicely made time-lapse video application in the Android Market. Lapse It is built with Flex 4.5 and runs on the AIR runtime. You can set the capture interval to anything from 1 second to as long as you like. You can also limit the length of your capture by [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F01%2F27%2Flapse-it-time-lapse-video-app-made-with-air-for-android%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F01%2F27%2Flapse-it-time-lapse-video-app-made-with-air-for-android%2F&amp;source=sjespers&amp;style=normal&amp;service=bit.ly&amp;service_api=R_f11b21ad05448f9b4029b73b124e8d0e&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I just came across this very nicely made time-lapse video application in the Android Market. Lapse It is built with Flex 4.5 and runs on the AIR runtime. You can set the capture interval to anything from 1 second to as long as you like. You can also limit the length of your capture by limiting the amount of frames, by setting a time or you can stop it manually. Lapse It will capture frames with a resolution up to <del datetime="2011-01-27T14:21:33+00:00">720p</del> (It&#8217;s actually not 720p but 720&#215;480) (the free version is limited to 240&#215;160) and the final result can be either a JPEG sequence or an FLV video. The app also has a built-in video player so you can immediately see the result and will even allow you to directly upload it to YouTube.</p>
<p>I was going to record the sunrise this morning&#8230; But then I remembered that I actually live in Belgium and that we are in the middle of the winter&#8230; ;-) The chances for sun are very slim and this morning it was too cloudy to record anything useful. I love time-lapse video so you can bet on the fact that I will be using this app whenever I can!</p>
<p style="text-align: center;"><iframe title="YouTube video player" class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/9BEfTAwcvWM" frameborder="0" allowFullScreen></iframe></p>
<p>Go check it out!</p>
<div id="app982" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/lapse-it-%E2%80%A2-lite-%E2%80%A2-time-lapse/air.LapseIt">Lapse It • Lite • Time-Lapse for Android on AppBrain</a></div>
<p><script src="http://www.appbrain.com/api/api.nocache.js" type="text/javascript"></script></p>
<div id="app469" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/lapse-it-%E2%80%A2-time-lapse/air.interactiveuniverse.LapseIt">Lapse It • Time-Lapse for Android on AppBrain</a></div>
<p><script src="http://www.appbrain.com/api/api.nocache.js" type="text/javascript"></script></p>
<p>UPDATE: I just did a quick little test with Lapse It and I absolutely love the result!<br />
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="640" height="510" src="http://www.youtube.com/embed/rgib17wij1w" frameborder="0" allowFullScreen></iframe></p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.webkitchen.be%2F2011%2F01%2F27%2Flapse-it-time-lapse-video-app-made-with-air-for-android%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:500px; height:75px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.webkitchen.be/2011/01/27/lapse-it-time-lapse-video-app-made-with-air-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Got AIR for Android? Try these games!</title>
		<link>http://www.webkitchen.be/2010/10/08/got-air-for-android-try-these-games/</link>
		<comments>http://www.webkitchen.be/2010/10/08/got-air-for-android-try-these-games/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 12:46:50 +0000</pubDate>
		<dc:creator>Serge Jespers</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[appbrain]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://www.webkitchen.be/?p=2979</guid>
		<description><![CDATA[I saw some comments from people installing AIR on their Android device who couldn&#8217;t find any apps for it. I think that&#8217;s just the beauty of it all. An AIR application behaves exactly the same way as any other application in the Android Market, so while there are already a few AIR apps in the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webkitchen.be%2F2010%2F10%2F08%2Fgot-air-for-android-try-these-games%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webkitchen.be%2F2010%2F10%2F08%2Fgot-air-for-android-try-these-games%2F&amp;source=sjespers&amp;style=normal&amp;service=bit.ly&amp;service_api=R_f11b21ad05448f9b4029b73b124e8d0e&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I saw some comments from people installing AIR on their Android device who couldn&#8217;t find any apps for it. I think that&#8217;s just the beauty of it all. An AIR application behaves exactly the same way as any other application in the Android Market, so while there are already a few AIR apps in the market, they&#8217;re not explicitly identified as AIR applications. But I understand that you all want to test the performance and experience, and you want to know which apps run on AIR. So here’s a few AIR-based games that are currently available in the Android Market for you to try out.</p>
<div id="app206" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/chroma-circuit/air.com.bowlerhatgames.mobile.ChromaCircuit">Chroma Circuit for Android on AppBrain</a></div>
<div id="app544" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/gridshock/air.com.bowlerhatgames.mobile.Gridshock">Gridshock for Android on AppBrain</a></div>
<div id="app519" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/qrossfire/air.com.bowlerhatgames.mobile.Qrossfire">Qrossfire for Android on AppBrain</a></div>
<div id="app442" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/meteor-storm/air.com.terrypaton.meteorstorm">Meteor Storm for Android on AppBrain</a></div>
<div id="app302" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/jacks/air.Jacks">Jacks for Android on AppBrain</a></div>
<div id="app218" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/mazeball/air.MAZEBALL">MazeBall for Android on AppBrain</a></div>
<div id="app56" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/pogz/air.com.terrypaton.pogz">POGZ for Android on AppBrain</a></div>
<div id="app677" class="appbrain-app"><a style="font-size: 11px; color: #555; font-family: Arial, sans-serif;" href="http://www.appbrain.com/app/treasure-caves-2/air.com.terrypaton.tc2">Treasure Caves 2 for Android on AppBrain</a></div>
<p><script src="http://www.appbrain.com/api/api.nocache.js" type="text/javascript"></script></p>
<p>I&#8217;ve also created an <a href="http://www.appbrain.com/user/webkitchen/air-applications" target="_blank">AIR for Android Applications</a> list on AppBrain (UPDATE: AppBrain now has a list of all AIR applications on the Android Market: <a href="http://www.appbrain.com/apps/adobe-air" target="_blank">http://www.appbrain.com/apps/adobe-air</a>) and will keep that up to date with new apps I find or hear about. If your app is already in the Android Market I&#8217;d love to hear about it!</p>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.webkitchen.be%2F2010%2F10%2F08%2Fgot-air-for-android-try-these-games%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:500px; height:75px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.webkitchen.be/2010/10/08/got-air-for-android-try-these-games/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>AIR for Android now in the Android Market</title>
		<link>http://www.webkitchen.be/2010/10/08/air-for-android-now-in-the-android-market/</link>
		<comments>http://www.webkitchen.be/2010/10/08/air-for-android-now-in-the-android-market/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 07:00:25 +0000</pubDate>
		<dc:creator>Serge Jespers</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[2.5]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[publish]]></category>

		<guid isPermaLink="false">http://www.webkitchen.be/?p=2971</guid>
		<description><![CDATA[Now that&#8217;s fantastic news to wake up to: The AIR for Android runtime is now available in the Android Market. Just open up the Market application on your Android (Froyo) device, search for Adobe AIR, and install it on your device. That same search will also reveal some apps that are built with AIR. I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webkitchen.be%2F2010%2F10%2F08%2Fair-for-android-now-in-the-android-market%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webkitchen.be%2F2010%2F10%2F08%2Fair-for-android-now-in-the-android-market%2F&amp;source=sjespers&amp;style=normal&amp;service=bit.ly&amp;service_api=R_f11b21ad05448f9b4029b73b124e8d0e&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignleft size-full wp-image-2972" title="androidair" src="http://www.webkitchen.be/wp-content/uploads/2010/10/androidair.jpg" alt="" width="250" height="273" />Now that&#8217;s fantastic news to wake up to: The AIR for Android runtime is now available in the Android Market.</p>
<p>Just open up the Market application on your Android (Froyo) device, search for Adobe AIR, and install it on your device. That same search will also reveal some apps that are built with AIR. I&#8217;m sure there will be more apps in the market in the next coming weeks. If you&#8217;re looking for some apps to try out I can highly suggest Qrossfire, Gridshock and Chroma Circuit from <a href="http://bowlerhatgames.com/" target="_blank">Bowlerhat Games</a>! <strong>UPDATE</strong>: <del datetime="2011-04-05T18:28:46+00:00">I <a href="http://www.webkitchen.be/2010/10/08/got-air-for-android-try-these-games/" target="_blank">posted a list of other games</a> that are available in the Android Market and I&#8217;ve started a <a href="http://www.appbrain.com/user/webkitchen/air-applications" target="_blank">list on AppBrain</a> with even more AIR games and apps!</del> AppBrain is maintaining a list of applications built with Adobe AIR. Check out <a href="http://www.appbrain.com/apps/adobe-air" target="_blank">http://www.appbrain.com/apps/adobe-air</a></p>
<p>This is a really exciting release. It gives Flash Platform developers direct access to the Android Market without having to learn anything new. You can just build applications with the technology you already know and distribute them in the Market application that the user already knows.</p>
<h3>Where to go next?</h3>
<ul>
<li>To build applications you can get the SDK from the <a href="http://www.adobe.com/go/airbetasignup" target="_blank">prerelease program</a>.</li>
<li>Build your applications using Flash Builder, Flash Professional CS5 or your favorite ActionScript development tool.</li>
<li>Package your application with the AIR SDK as an APK file (an update/fix for Package Assistant Pro is coming <del datetime="2010-10-08T13:43:10+00:00">later today</del> on Monday)</li>
<li>Publish your application to the Android Market. Ryan Stewart has an <a href="http://blog.digitalbackcountry.com/" target="_blank">excellent post</a> on how to sign your applications and submit them to the Android Market.</li>
</ul>
<iframe id="basic_facebook_social_plugins_likebutton" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.webkitchen.be%2F2010%2F10%2F08%2Fair-for-android-now-in-the-android-market%2F&amp;layout=standard&amp;show_faces=true&amp;width=500&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:500px; height:75px"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.webkitchen.be/2010/10/08/air-for-android-now-in-the-android-market/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

