<?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>www.flashmobileblog.com &#187; Android</title>
	<atom:link href="http://www.flashmobileblog.com/tag/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashmobileblog.com</link>
	<description>Mark Doherty - Blog Archive</description>
	<lastBuildDate>Thu, 17 Nov 2011 02:12:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>AIR 3 Native Extensions</title>
		<link>http://www.flashmobileblog.com/2011/09/07/air-3-native-extensions/</link>
		<comments>http://www.flashmobileblog.com/2011/09/07/air-3-native-extensions/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 14:27:00 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Adobe Mobile Client]]></category>
		<category><![CDATA[Creative Suite 5]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[AIR for TV]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Native Extensions]]></category>
		<category><![CDATA[Playbook]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1338</guid>
		<description><![CDATA[&#160; Yesterday we pushed out the first Release Candidate of AIR3 and Flash Player 11, and with that, we&#8217;ve outed another new feature of AIR &#8211; Native Extensions.  This represents a further opening up of the Flash Platform in that you will finally be able to add new features to the runtime. History of Native [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Yesterday we pushed out the first Release Candidate of <a href="http://labs.adobe.com/technologies/flashplatformruntimes/air3/">AIR3</a> and <a href="http://labs.adobe.com/technologies/flashplatformruntimes/flashplayer11/">Flash Player 11</a>, and with that, we&#8217;ve outed another new feature of AIR &#8211; Native Extensions.  This represents a further opening up of the Flash Platform in that you will finally be able to add new features to the runtime.</p>
<p><strong>History of Native Extensions</strong></p>
<p>The origin of Native Extensions actually goes back all the way to Flash Lite in 2005 and were in fact part of my first engineering project at Adobe.  Back then we had the idea to enable a man machine interface (MMI) to the Flash Lite runtime to enable complete device interfaces to be built in Flash, the Samsung D600/D900, LG Prada, LG Cookie etc were the result of that effort .</p>
<p>The feature later evolved to become part of an OEM runtime called <a href="http://www.flashmobileblog.com/2009/03/15/lg-kp500-cooky-adobe-mobile-client-flash-technology/">Adobe Mobile Client</a> which was integrated into the BREW MP Platform to enable low-end devices to be produced with advanced interfaces and at much lower cost.</p>
<p>More recently we started working on &#8220;StageCraft&#8221;, the code name for a project to bring AIR/Flash support to the TV ecosystem.  With the first iteration it was apparent that remote controls were all different, it would be impossible to create a completely consistent API for all of the various pieces of consumer electronics out there.  With that, Native Extensions were reborn and redesigned to enable OEMs to build these custom APIs with ease.</p>
<p>Which brings us to today&#8217;s announcement, the opening of the Native Extension feature for all to use.</p>
<h4>What are Native Extensions for?</h4>
<p>From a high level this feature enables you to:</p>
<ul>
<li>Achieve deeper integration with target devices</li>
<li>Incorporate legacy native code in your applications</li>
<li>Achieve maximum performance for critical code</li>
</ul>
<p>As I see it, we built the Native Extension feature originally to enable access to platform or device specific features that don&#8217;t form part of the platform today.  Just to give you some context here, we always have debates about adding new features in the runtimes, many are community sourced, some OEM focused and some are internal like Flex etc.  Imagine what happens when the Acrobat, Photoshop and Runtime engineers are free to finish their pet projects <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Here are some thoughts on deeper API possibilities for devices today:</p>
<ul>
<li>Notifications</li>
<li>Gyroscope</li>
<li>Bluetooth</li>
<li>Advertising</li>
<li>NFC / Payments</li>
<li>USB Accessories</li>
<li>Media FX/Encoding</li>
<li>Text to Speech</li>
<li>Contacts</li>
<li>Calendar</li>
<li>Alarms</li>
</ul>
<p>Of course let&#8217;s not ignore the various possibilities that are now open for desktop developers that want to access provide new interfaces for legacy products.</p>
<p>The benefit is that now customers conversations shouldn&#8217;t end with <em>&#8220;Can you support XX with AIR on XX platform?&#8221;</em>, from this point on the answer will always be yes, assuming you have the technically capability to implement it, or can acquire the extension from someone who can.</p>
<h4>Using a Native Extension</h4>
<p>From Actionscript, the use of an already built Native Extension couldn&#8217;t be simpler.  In the example below you can see the first iteration of the Native Extension that I&#8217;ve been creating for Android Tablets with multiple displays.</p>
<pre>            import flash.external.ExtensionContext;</pre>
<pre>            if(!extensionContext)
            {
                extensionContext = ExtensionContext.createExtensionContext("com.android.MultiDisplayInfo", "");
                return extensionContext.call("getInfo","getCount") as int; 
            }</pre>
<p>&nbsp;</p>
<h1><a href="http://www.adobe.com/devnet/air/articles/extending-air.html">Get Started</a></h1>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2011/09/07/air-3-native-extensions/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>$200k &#8211; Adobe AIR App Challenge for Sony Tablets</title>
		<link>http://www.flashmobileblog.com/2011/07/12/200k-adobe-air-app-challenge-for-sony-tablets/</link>
		<comments>http://www.flashmobileblog.com/2011/07/12/200k-adobe-air-app-challenge-for-sony-tablets/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 19:02:05 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Creative Suite 5]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[OpenScreenProject]]></category>
		<category><![CDATA[OSP]]></category>
		<category><![CDATA[Sony]]></category>
		<category><![CDATA[Sony Ericsson]]></category>
		<category><![CDATA[Sony Tablet]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1309</guid>
		<description><![CDATA[This summer seems like one for Flash and Mobile, so it&#8217;s great to be able to tell you that Sony, one of our long term partners in mobile, are joining the Open Screen Project and will be a platinum sponsor of Adobe MAX in LA. Today we&#8217;re announcing an exciting new Adobe AIR App Challenge [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2011/07/Screen-shot-2011-07-13-at-15.18.35.png"><img class="aligncenter size-full wp-image-1331" title="Screen shot 2011-07-13 at 15.18.35" src="http://www.flashmobileblog.com/wp-content/uploads/2011/07/Screen-shot-2011-07-13-at-15.18.35.png" alt="" width="621" height="267" /></a><br />
This summer seems like one for Flash and Mobile, so it&#8217;s great to be able to tell you that Sony, one of our long term partners in mobile, are joining the <a href="http://www.openscreenproject.org">Open Screen Project</a> and will be a platinum sponsor of Adobe MAX in LA.</p>
<p>Today we&#8217;re announcing an exciting new <a href="http://www.airappchallenge.com?sdid=ITSZE">Adobe AIR App Challenge</a> for two upcoming Sony Tablet devices.  It&#8217;s available to those of you in Germany, Italy, Japan, Spain, UK and USA.</p>
<p>There are lots of prizes ($200,000 USD) available for various categories of applications, as well as early access to the devices and Adobe AIR 3, and a paid-up trip to <a href="http://max.adobe.com">Adobe MAX</a> for finalists.  All that and more for optimizing your applications for Sony&#8217;s new devices.</p>
<p>Let&#8217;s take a look at the devices..</p>
<h2>Sony Tablet</h2>
<p>Both tablets come with Sony quality design and hardware, most importantly, with incredible quality screens.  Each of the devices has a Tegra 2 chipset from NVIDIA and will be &#8220;PlayStation Certified&#8221;, so expect some of the best quality games seen on the 1st-gen PlayStation and Xperia PLAY smartphone.</p>
<p>The tablets will ship with Flash Player pre-installed, but interestingly the Sony Tablet devices will ship with a new Sony Web browser.  With that, we can expect better performance for Flash and browsing the web, compared to the stock browser.</p>
<p><img class="aligncenter" src="http://www.hrmehrotra.info/wp-content/uploads/2011/04/Sony-Tablet-pc.jpg" alt="" width="536" height="288" /></p>
<p>The Sony Tablet S1 (codename) which has a stunning curved body designed to feel lighter in the hand, like when you fold a magazine.  It comes with a 9.4 inch display, so will be great for Entertainment and reading.  As many of you have heard me say, 10&#8243; screens feel too big for my little Irish hands, so it&#8217;ll be interesting to see what it&#8217;s like.</p>
<p>Sony Tablet S2 (codename also) is quite different as it comes with two screens.  The underlying technical specs are identical between the devices, but this device is going to be great for building applications that long for unique interfaces that make use of the dual-screens.  I&#8217;ve got my sights set on a mixing deck idea, but it&#8217;s also going to be a nice way to play games; Battleship anyone?</p>
<h2>The Challenge</h2>
<p>Adobe and Sony are challenging developers and content publishers to build breakthrough mobile apps optimized for the Sony Tablet S1 and Sony Tablet S2.  We have a panel of some amazing judges, both Sony, Adobe and industry experts picking finalists and winners across four key categories.</p>
<p>Each category has a cash prize of $20,000 USD and promotion on the Sony Tablet devices, with a $100,000 USD Grand Prize awarded for the best overall application.</p>
<ul>
<li>Entertainment</li>
<li>Lifestyle and Community</li>
<li>Gaming</li>
<li>Business and Productivity</li>
</ul>
<p>Our team of judges will be reviewing applications throughout the process, and will look favourably at applications that span across different platforms.  Maybe your application works on Sony Vaio PCs, or Sony Televisions with GoogleTV?</p>
<p>If you get in early enough, before <strong>September 16th</strong>, you&#8217;ll have the chance to be one of the 10 MAX Award Finalists.  So get in early and you can get a free trip to Adobe MAX in LA!</p>
<p>In addition, $10,000 USD will be awarded for the following applications:</p>
<ul>
<li>Most Innovative Application</li>
<li>MAX Public Favorite &#8211; awarded by community vote</li>
</ul>
<p>The top 80 finalists in the contest will get pre-release access to the devices for a 4 week period, the Adobe AIR 3 runtime, and access to the very latest tooling to complete your application.  You&#8217;ll be on the leading edge of Flash development and innovation.</p>
<h2>Adobe AIR 3 Beta</h2>
<p>You will use Adobe AIR 3 Desktop Beta, released soon for the desktop to optimize your applications for both devices.  So you can start to consider how your existing or new applications would make use of the dual screen, be as novel as you like!  (cough, mixing desk, cough)</p>
<p>For the Sony Tablet S2 you will use the upcoming Native Extension feature in AIR 3, one of the most exciting features in the upcoming release of the platform.  Native Extensions give us an easy way to optimize applications for dual screens, that&#8217;s because we can now access any API on a host Operating System!</p>
<p>All applications should support both the Sony Tablet S1 and S2.</p>
<h2>Key Diary Dates</h2>
<ul>
<li><span style="color: #ff0000;">Sept 16:</span> Deadline for MAX Showcase App prizes</li>
<li><span style="color: #ff0000;">Oct 1-5:</span> MAX Public Favorite Vote &amp; MAX Showcase App winners attend Adobe MAX</li>
<li><span style="color: #ff0000;">Oct 10:</span> Deadline for Entries</li>
<li><span style="color: #ff0000;">Nov 11:</span> Final App Submission for Finalists to the Android Market</li>
<li><span style="color: #ff0000;">Nov 17:</span> Winners Announced</li>
</ul>
<h3>Submit your app or app project now at <a href="http://www.airappchallenge.com">airappchallenge.com</a></h3>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2011/07/12/200k-adobe-air-app-challenge-for-sony-tablets/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Flash Player versions 10-11</title>
		<link>http://www.flashmobileblog.com/2011/03/16/flash-player-versions-10-11/</link>
		<comments>http://www.flashmobileblog.com/2011/03/16/flash-player-versions-10-11/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 16:40:34 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[10.2]]></category>
		<category><![CDATA[10.3]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Molehill]]></category>
		<category><![CDATA[Playbook]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1267</guid>
		<description><![CDATA[As you have undoubtedly noticed by now, we&#8217;ve been updating the Flash Player and AIR runtimes with increased frequency.  In fact, we&#8217;re moving to a new (roughly) quarterly update schedule for the runtimes that we hope will deliver huge advances across the web in a very short time. Why?  I guess there are a number [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.dmxzone.com/downloads/images/adobe_flash_player_10.3.png" alt="" width="660" height="205" /></p>
<p>As you have undoubtedly noticed by now, we&#8217;ve been updating the Flash Player and AIR runtimes with increased frequency.  In fact, we&#8217;re moving to a new (roughly) quarterly update schedule for the runtimes that we hope will deliver huge advances across the web in a very short time.</p>
<p>Why?  I guess there are a number of reasons, the most interesting one is mobile investments bringing new fruit and HTML beginning to take more of the weight.  If you remember, during the 18months when Flash Player 10.1 was launching we received a lot of feedback that we were over-committed to mobile in general.  I think unfortunately the word didn&#8217;t get out that these investments were much broader than just mobile devices.   It was a ground up effort to enable the Flash Platform to support sweeping changes in the way media is composed, rendered, protected and analyzed.</p>
<p>Looking at the world through <a href="http://www.tomiahonen.com/ebook/almanac.html">Tomi Ahonen&#8217;s</a> eyes, you can see that a growing majority of web access is now on mobile devices.  That is, if you include the numbers of people using mobile only and mobile or desktop devices.  Of course these devices require new tools, new ideas and new content that runs effectively &#8211; it&#8217;s time for a shift in thinking.</p>
<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2011/03/Screen-shot-2011-03-16-at-18.18.17.png"><img class="aligncenter size-full wp-image-1275" title="Screen shot 2011-03-16 at 18.18.17" src="http://www.flashmobileblog.com/wp-content/uploads/2011/03/Screen-shot-2011-03-16-at-18.18.17.png" alt="" width="555" height="346" /></a></p>
<p>Historically this is actually a pattern of advances on the web if you look at Flash releases, maybe some of you recognized it?</p>
<ul>
<li>Flash 1 &#8211; Vector Graphics Support</li>
<li>Flash 3 &#8211; MovieClips, loadMovie</li>
<li>Flash 6 &#8211; AS1, XML, Video, Unicode, Drawing API, events, AMF</li>
<li>Flash 9 &#8211; AS3, H.264, JIT Compiler, E4X, Binary Sockets</li>
<li>Flash 11 &#8211; Full 3D etc</li>
</ul>
<p><strong>Note: </strong> I&#8217;m not attempting to be precise here, it&#8217;s just a pattern that describes the general points where the Platform has evolved over time.  There are obviously matching HTML/Jscript/CSS advances to match, all of which make the wheels of the web go round.</p>
<p>So in our efforts to drive web innovation, and take the Flash Platform to new places, let&#8217;s look at the current and upcoming Flash Player releases.</p>
<h2>Flash Player 10.2</h2>
<p>New Features include:</p>
<ul>
<li>StageVideo support, pushing decoding and screen blitting of H.264 video via the GPU.  This is actually a feature that comes from the Digital Home investments, and in fact Flash Lite on Nokia phones rendered video in much the same way.</li>
<li>Complete Hardware rendering path on IE9</li>
<li>Native Mouse Cursors, enabling richer gaming experiences</li>
</ul>
<p><a href="http://osmf.org/dev/latest/debug.html?src=rtmp://cp67126.edgefcs.net/ondemand/mp4:mediapm/osmf/content/test/sample1_700kbps.f4v&amp;logFilter=videoClasses&amp;enableStageVideo=false">StageVideo</a> should now be included in all situations where you are presenting video.  It&#8217;s automatically enabled on mobile and Digital Home devices, but on the desktop it&#8217;s not always possible to use this method.  Get started with <a href="http://www.adobe.com/devnet/flashplayer/articles/stage_video.html">StageVideo today</a>.</p>
<p>Many of you have noticed that Flash Player 10.2 has yet to launch on mobile, for which there are number of reasons.  Those are quite obvious really, it&#8217;s just much more complicated to ship on mobile phones and tablets.  In addition, we&#8217;re targeting the new Android 3.0.1 release from Google as well, a platform that brings fresh features and challenges.</p>
<p><span style="color: #ff0000;">That said, Flash Player 10.2 is expected to ship on Android in two days time.</span></p>
<h2>Flash Player 10.3</h2>
<p>Already fast on the heels of 10.2 is a desktop beta version of the next Flash Player to launch.  This is actually on the most exciting releases for some time because it delivers new features, many of which are driven by the community.</p>
<p>New Features include:</p>
<ul>
<li>Media Measurement</li>
<li>Acoustic Echo Cancellation</li>
<li>Integration with browser privacy control for local storage</li>
<li>Native Control Panel</li>
<li>Auto-Update Notification for Mac OS</li>
</ul>
<p>With these new additions, the community will be able to create incredible VOIP applications in the browser.  One of the missing items for those applications was Echo Cancellation, essentially processing of the Microphone inputs so that you won&#8217;t need a headset.  I&#8217;m certainly going to use this for my <a href="http://www.androidzoom.com/android_applications/communication/videocall-radar_towl.html">Radar</a> application.</p>
<p>Another nice new feature is the native control panel, this will make Flash feel more integrated into the Desktop or device experience.  Finally we can get rid of the horrible SWF based settings manager on Adobe.com, something that confused even me.  Users will be able to control their own security and experience much more easily, as well as make the best of Browser security.</p>
<p>Media Measurement is going to be great for our Omniture customers, enabling them to analysis content playback much more easily.  Let&#8217;s face it, it&#8217;s a feature for monetization, but that&#8217;s always good.  Last year over 128Billion Megabytes were streamed through Flash Player, that&#8217;s 100% growth.  So with this feature our customers will be able to get a much broader view of what&#8217;s going on during playback, helping to improve and monetize those experiences.</p>
<p>You can download the <a href="http://labs.adobe.com/technologies/flashplatformruntimes/flashplayer10-3">beta today</a>.</p>
<h2>Flash Player Inclubator</h2>
<p>As you read above, this is part of our ongoing efforts to seed the community with bleeding edge technology.  I like to think of it this way, HTML will be taking care of some of those slideshow and simpler web experiences, micro-sites, product data and maybe some basic video playback.  This isn&#8217;t something that scares me, in fact it&#8217;s completely the opposite.  Lets face it, the more HTML can take on, the more new innovations we can deliver with Flash.</p>
<p>I find the whole HTML5 and Flash argument quite amusing, anyone that&#8217;s old enough to remember how the web evolved will recognise that Flash was successful because it solved problems for our customers.  So it makes sense (and it&#8217;s exciting) that it will evolve to solve new problems as HTML catches up, and we&#8217;re helping those technologies catch up.</p>
<p>New Features:</p>
<ul>
<li>All of Flash Player 10.3</li>
<li>3D Rendering Pipeline &#8220;Molehill&#8221;</li>
<li>more to come <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<p>Interestingly, the StageVideo api enables play back video on a hardware surface using an OpenGL (ES2.0)/Direct3D shader API to convert from YUV to RGB.  It shouldn&#8217;t take you long to realise that Molehill uses the same apis for 3D rendering, thus enabled by Stagevideo.</p>
<p>Flash is so widely distributed now that we don&#8217;t have the option to simply cut off those users without GPUs or the correct drivers.  So for these users we have a seamless fallback to a new component called SwiftShader, a <a href="http://transgaming.com/business/swiftshader/technology/">Transgaming</a> product of which Adobe is a licensee.</p>
<p>You can see some of the incredible work underway below:</p>
<p><object width="640" height="390"><param name="movie" value="http://www.youtube.com/v/vJEY0lFMjwI?fs=1&amp;hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed type="application/x-shockwave-flash" width="640" height="390" src="http://www.youtube.com/v/vJEY0lFMjwI?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>&nbsp;</p>
<h2>Developer and/or Browser War</h2>
<p><em>(Personal Opinion)</em></p>
<p>Finally, in case some of you didn&#8217;t notice, we&#8217;re in the middle of a browser war.  Each of the major players (including Adobe) are working incredibly hard to drive innovation on the web, adding new features, increasing performance and fighting for territory.</p>
<p>This has unfortunately led to some adverse press attention being poured on Flash, one of the most talked about technologies of the past year.  What&#8217;s important here is that we all keep a level head, listen to customers concerns, but always consider someones motivation for targeting Flash to gain press attention.</p>
<p>Example One</p>
<ul>
<li><a href="http://www.fastcompany.com/1737377/firefox-vp-flash-is-going-away">March 11th &#8211; Mozilla</a>, &#8220;Flash is Dead&#8221; (<a href="http://blog.mozilla.com/blog/2011/03/09/mozilla-firefox-4-release-candidate-for-windows-mac-and-linux-now-available/">two days prior they released an RC build</a> of Firefox 4),</li>
<li>March 14th &#8211; <a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home">Microsoft launches IE9</a> with hardware accelerated Flash integration as a feature</li>
</ul>
<p>Example Two</p>
<ul>
<li><a href="http://bits.blogs.nytimes.com/2010/04/27/googles-andy-rubin-on-everything-android/">April 27th &#8211; Google</a></li>
<li><a href="http://www.apple.com/hotnews/thoughts-on-flash/">April 29th &#8211; Apple</a></li>
</ul>
<p>Net is, Flash is a product made successful by those who use it &#8211; that&#8217;s probably you.  It&#8217;s not just a pile of 1&#8242;s and 0&#8242;s, it&#8217;s a complete ecosystem that is largely, and most successfully, presented within HTML  It&#8217;s success has been driven by the Flash community creating incredible millions of pieces of content over the past decade, enabling online business and entertainment to thrive.</p>
<p>I have no doubt that HTML5 is going to be great for all of us, that includes Flash developers who will be free to create even more advanced forms of content on even more screens.  That&#8217;s why I believe that Flash is the innovation engine for the web and digital experiences, the use cases may well change &#8211; but the reason for Flash existing won&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2011/03/16/flash-player-versions-10-11/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Facebook Connect with AIR on Android</title>
		<link>http://www.flashmobileblog.com/2010/10/14/facebook-connect-with-air-on-android/</link>
		<comments>http://www.flashmobileblog.com/2010/10/14/facebook-connect-with-air-on-android/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 20:10:14 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1219</guid>
		<description><![CDATA[Last week we published a new Facebook SDK for creating Flash and AIR applications that incorporate Facebook connectivity using their new Open Graph API.  The design of their API is really great and uses Open Authentication version 2.0, so it&#8217;s easier than ever to connect your applications &#8211; and help them go viral. Creating an [...]]]></description>
			<content:encoded><![CDATA[<p><center><object width="601" height="338"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=15849910&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=15849910&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="601" height="338"></embed></object></center></p>
<p>Last week we published a new <a href="http://www.adobe.com/devnet/facebook.html">Facebook SDK</a> for creating Flash and AIR applications that incorporate Facebook connectivity using their new <a href="http://developers.facebook.com/docs/api">Open Graph API</a>.  The design of their API is really great and uses <a href="http://developers.facebook.com/docs/authentication/">Open Authentication version 2.0</a>, so it&#8217;s easier than ever to connect your applications &#8211; and help them go viral.</p>
<p>Creating an application couldn&#8217;t be simpler, just go to <a href="http://www.facebook.com/developers/createapp.php">this link</a> and fill in the details to retrieve your Application ID.  You&#8217;ll only need that to connect your new application.</p>
<p>Admittedly I was a little surprised to see that AIR on Android wasn&#8217;t supported, although the full source is published and so it was easy to start adapting it for use on Android.  In the video above you can see how simple it is to connect your applications.</p>
<p>Below you can download the full source and step through the application.  Maybe you can add a feature that supports status updates?</p>
<h4><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/10/FaceCard.zip">FaceCard Download</a></h4>
<h4><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/10/FacebookMobile.zip">FacebookMobile Download</a></h4>
<h1>Radar</h1>
<p>In addition, I have been adding support for Facebook and Twitter connectivity to my Radar application &#8211; currently available on the Android Market.  This application has become much more complex as a result, but I think it&#8217;s now looking really great.</p>
<p>You can download the application on the <a href="http://www.appbrain.com/app/radar-videocall/air.Radar">Android Market</a>, or for the <a href="http://www.flashmobileblog.com/radar/">Desktop here</a>.  If you are feeling brave then you can find the source for this application below.</p>
<h4><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/09/Radar.zip">Radar Source Download</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/10/14/facebook-connect-with-air-on-android/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>VideoCall Radar is now on the Android Market</title>
		<link>http://www.flashmobileblog.com/2010/10/08/videocall-radar-is-now-on-the-android-market/</link>
		<comments>http://www.flashmobileblog.com/2010/10/08/videocall-radar-is-now-on-the-android-market/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 13:24:18 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Device Central Updates]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[Air 2.5]]></category>
		<category><![CDATA[Flash Platform]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1206</guid>
		<description><![CDATA[Today I published my P2P video application, &#8220;Radar&#8221; on the Android Market for free, it took about 15mins in total.  You can now all go and download the application and rate it five stars minimum Serge is also going to try and keep a list of the current applications here. Installation We have worked closely [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-13.48.45.png"><img class="aligncenter size-full wp-image-1207" title="Screen shot 2010-10-08 at 13.48.45" src="http://www.flashmobileblog.com/wp-content/uploads/2010/10/Screen-shot-2010-10-08-at-13.48.45.png" alt="" width="332" height="548" /></a></p>
<p>Today I published my P2P video application, &#8220;Radar&#8221; on the Android Market for free, it took about 15mins in total.  You can now all go and download the application and rate it five stars minimum <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.webkitchen.be/2010/10/08/got-air-for-android-try-these-games/">Serge is also going to try and keep a list of the current applications here.</a></p>
<h2>Installation</h2>
<p>We have worked closely with the Android team to ensure that the seamless AIR runtime installation from the desktop is mirrored on devices.  This isn&#8217;t a simple process and as you will notice, it&#8217;s not perfect.  Today, the first AIR application that gets installed will ask the users permission to download the AIR runtime &#8211; this comes from the Android Market.</p>
<p>To be clear, on mobile devices there is a very clear security process for 3rd party installations.  We don&#8217;t intend to break that model for the time being as it comes with a number of benefits &#8211; like updating the runtime for example.</p>
<address>Adobe AIR is 5.65Mb compressed and 16.3Mb when installed.<br />
</address>
<h1>Get Started</h1>
<p>This is obviously a very exciting time and there are already some Flash based games and applications sitting on the market from Flash developers around the world.  I tried playing with a few of them and it&#8217;s exciting to see so many of you jumping at the chance to go live, arguably a few jumped too soon.  Please Please test your applications thorough and ensure high quality!!</p>
<h1>Submission process</h1>
<p>Set yourself up as an Android Developer, <a href="http://market.android.com/publish/Home">it costs $25</a> and you can use Google Checkout.</p>
<h3>Certificates</h3>
<p>Once you&#8217;re all signed up, you only need to submit your application APK, created from Flash Professional or using the wonderful command line.  In either case, you will need to ensure that your certificate is valid for 25 years.</p>
<p>Go to the AndroidSDK\tools folder using your Terminal or Command Prompt.</p>
<pre>adt -certificate -cn flashmobileblog -ou markadoherty -validityPeriod 25 2048-RSA ./androidCert.p12 somepassword</pre>
<p>Once completed, you can now compiled your APK as before &#8211; selecting this new certificate.  Android publishers are free to use self-signed certificates created in this way, however it is advisable to use a proper certificate.  The Adobe AIR certificate is well recognized (Verisign based) and works on Android, Mac, Windows, Linux and more to come.</p>
<h3>Icons</h3>
<p>You will need icons, 48&#215;48 and 72&#215;72.  Google have provided a very detailed <a href="http://developer.android.com/guide/practices/ui_guidelines/icon_design.html">set of guidelines</a> on icon production, so I suggest you drop by and ensure that you&#8217;re following the best practices.  Liz Myers has a great video session on icons and how to stand out <a href="http://tv.adobe.com/#vi+f15313v1006">over here</a> (note that this was for Flash Lite, but the concepts are the same).</p>
<h3>Screenshots</h3>
<p>In addition, in the Android Market there are usually some marketing screenshots.  These help users decide whether they are interested in your app or not and so I suggest that you spend some time making them great.  You can submit two of them at 320&#215;480 or 480&#215;854.</p>
<p>Lastly, you will want to submit a promotional graphic for use on websites and other materials at 180&#215;120 portrait.</p>
<h1>Marketing</h1>
<p>In these early days I recommend adding Adobe AIR into your description for the application.  This will ensure that users are aware that they need a Froyo device and you can also benefit from free marketing moving forward as users will be able to search for &#8220;Adobe AIR&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/10/08/videocall-radar-is-now-on-the-android-market/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Radar running on the Samsung Galaxy Pad (European)</title>
		<link>http://www.flashmobileblog.com/2010/09/21/radar-running-on-the-samsung-galaxy-pad-european/</link>
		<comments>http://www.flashmobileblog.com/2010/09/21/radar-running-on-the-samsung-galaxy-pad-european/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 22:50:48 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Galaxy]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Tablet]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1187</guid>
		<description><![CDATA[Last week I visited Toronto in Canada for the second FITC Mobile event, part of the Mobile Innovation week held in the city.  As always the event was a great success and it was nice to meet up with old friends, and hear about the exciting new ideas in the mobile industry. Samsung were a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://www.backbonemag.com/files/Images/events/FITC-Mobile-2010-09.jpg" alt="" width="468" height="60" /></p>
<p>Last week I visited Toronto in Canada for the second <a href="http://www.fitc.ca/events/schedule/?event=109">FITC Mobile event</a>, part of the Mobile Innovation week held in the city.  As always the event was a great success and it was nice to meet up with old friends, and hear about the exciting new ideas in the mobile industry.</p>
<p>Samsung were a sponsor this year again, and thankfully the team had brought along a couple of <a href="http://galaxytab.samsungmobile.com/">Samsung Galaxy Tab</a> devices for the attendees to play with.  The device is very nice, light in the hand and with a beautiful bright screen &#8211; the whole experience is very fluid.  Something that I missed at the launch was the inclusion of a phone, so it was great to see added functionality and play with the browser.</p>
<p>With a little arm twisting I managed to install the very latest <a href="http://labs.adobe.com/technologies/air2/android/">AIR2.5 beta for Android</a> and test out my application, Radar.</p>
<p>On the way to Canada I have been playing with dynamic layouts, and trying to figure out how the application will scale for different screen sizes.  At the time I was only thinking about the desktop, Nexus One and Droid 2 &#8211; but hey, why not a tablet <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>The video below shows the experience running well, although the demo gods were circling&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="601" height="338" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=15126613&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="601" height="338" src="http://vimeo.com/moogaloop.swf?clip_id=15126613&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://www.terrenceryan.com/">Terry Ryan</a>, <a href="http://www.paultrani.com/blog/index.php/2010/09/samsung-galaxy-tab/">Paul Trani</a> and <a href="http://www.remotesynthesis.com/">Brian Rinaldi</a> were also at the event, it was great to catch up with the US Evangelists.  In fact Paul also recorded a great video demo of Flash in the browser on the Samsung Tablet here:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="601" height="338" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=15083708&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="601" height="338" src="http://vimeo.com/moogaloop.swf?clip_id=15083708&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I am also provide the update source files for this demo below, maybe you can think of new features and play around with the UI?</p>
<h1><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/09/Radar.zip">DOWNLOAD SOURCE</a></h1>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/09/21/radar-running-on-the-samsung-galaxy-pad-european/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>P2P Radar for Android</title>
		<link>http://www.flashmobileblog.com/2010/08/27/p2p-radar-for-android/</link>
		<comments>http://www.flashmobileblog.com/2010/08/27/p2p-radar-for-android/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 14:39:51 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[P2P]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1167</guid>
		<description><![CDATA[A few weeks ago I published a video demonstrating the amazing P2P features in AIR2.x, running on the desktop and on Android devices. Well I have been hard at work improving this application and making it robust enough to show here in India at the Flash Platform Summit. The result is a pretty complex application [...]]]></description>
			<content:encoded><![CDATA[<p><center><object width="601" height="338"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=14480534&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=14480534&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="601" height="338"></embed></object></center></p>
<p>A few weeks ago I published a video demonstrating the amazing P2P features in AIR2.x, running on the desktop and on Android devices.  Well I have been hard at work improving this application and making it robust enough to show here in India at the Flash Platform Summit.</p>
<p>The result is a pretty complex application that enables users to establish P2P video calls.  I have used Google Maps in 3D mode and added Gesture support, Twitter for Authentication and a completely new API.</p>
<p>As promised, here is the source for you to download.  Remember that <a href="http://www.flashrealtime.com/">Tom Krcha</a> is our P2P and FMS expert, so make sure that you keep up-to-date on his blog for more elaborate uses of P2P.</p>
<h1><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/09/Radar.zip">DOWNLOAD</a></h1>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/08/27/p2p-radar-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update &#8211; P2P Video Calls on Android</title>
		<link>http://www.flashmobileblog.com/2010/07/17/p2p-video-calls-on-android/</link>
		<comments>http://www.flashmobileblog.com/2010/07/17/p2p-video-calls-on-android/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 10:24:05 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[AIR2.5]]></category>
		<category><![CDATA[Camera]]></category>
		<category><![CDATA[Microphone]]></category>
		<category><![CDATA[NativeExtensions]]></category>
		<category><![CDATA[StageWebView]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1137</guid>
		<description><![CDATA[Note: These AIR features are &#8220;working&#8221;, although they may not make it into the v1 product. Note: This is not an Adobe product, but simply a feature demo that took 3 days. Any one can build P2P applications with Flash and AIR. This week I have been working on a couple of different mini-projects to [...]]]></description>
			<content:encoded><![CDATA[<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="601" height="338" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=13410620&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="601" height="338" src="http://vimeo.com/moogaloop.swf?clip_id=13410620&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
<p><em><strong>Note</strong>: These AIR features are &#8220;working&#8221;, although they may not make it into the v1 product.</em><br />
<em><strong>Note</strong>: This is not an Adobe product, but simply a feature demo that took 3 days.  Any one can build P2P applications with Flash and AIR.</em></p>
<p>This week I have been working on a couple of different mini-projects to test out new beta features of <a href="http://labs.adobe.com/technologies/air2/android/">AIR 2.5 for Android</a>.  The engineering team are pushing out features every week, and I have to say I&#8217;m very very impressed with their efforts.  We are arguably now at feature parity with the desktop AIR releases, which is precisely the goal of the <a href="http://www.openscreenproject.org">Open Screen Project</a>.</p>
<p>In the 5/7 build we have added Camera, Microphone, <a href="http://vimeo.com/13410792">StageWebView</a> and NativeExtensions features to the beta.  Of course AIR comes with all of the Flash Player 10.1 features along with multi-touch/gestures, support for bitmap matrix caching and <a href="http://vimeo.com/13410792">Geolocation APIs</a> in addition.</p>
<p>The code isn&#8217;t exactly stable so I don&#8217;t want to release it just yet.  I hope I can finish it by next week, by which time it will have a name.  I changed the name of this demo since it&#8217;s not an Adobe Flash Platform product, which caused some confusion. There aren&#8217;t plans currently to release this as a product, however I will publish the source code for all.</p>
<p>Flash/AIR on!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/07/17/p2p-video-calls-on-android/feed/</wfw:commentRss>
		<slash:comments>73</slash:comments>
		</item>
		<item>
		<title>AIR2.5 StageWebView demo &#8211; OAuth Support</title>
		<link>http://www.flashmobileblog.com/2010/07/17/air2-5-stagewebview-demo-oauth-support/</link>
		<comments>http://www.flashmobileblog.com/2010/07/17/air2-5-stagewebview-demo-oauth-support/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 10:21:58 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[AIR2.5]]></category>
		<category><![CDATA[StageWebView]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1139</guid>
		<description><![CDATA[&#160; &#160; Some of you will have seen our recent series of e-seminars and blog posts about EVA, the Evangelist tool for day-to-day activities.  As you would expect, it&#8217;s a multi-screen application that uses all of our technologies where possible. In terms of production, I am responsible for the mobile implementation and for that I [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><object width="601" height="338"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13410792&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="601" height="338" src="http://vimeo.com/moogaloop.swf?clip_id=13410792&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" allowfullscreen="true" allowscriptaccess="always"></embed></object>&nbsp;</p>
<p>Some of you will have seen our recent <a href="http://www.adobe.com/devnet/flex/events/#appinaweek">series of e-seminars</a> and blog posts about EVA, the Evangelist tool for day-to-day activities.  As you would expect, it&#8217;s a multi-screen application that uses all of our technologies where possible.</p>
<p>In terms of production, I am responsible for the mobile implementation and for that I created a number of features such as the <a href="http://www.flashmobileblog.com/2010/06/15/eva-geoservices-component-source/">GeoServices</a> library, <a href="http://www.flashmobileblog.com/2010/06/18/air-on-android-tweetrapp-video-walk-through/">Twitter widget</a> and <a href="http://www.flashmobileblog.com/2010/06/14/google-maps-evangelist-radar/">radar widget</a> &#8211; all of which I covered in previous blog posts.</p>
<p>One of the team gripes with the Twitter component is that it&#8217;s too hard to login to Twitter using the PIN based mechanism.  With that in mind I jumped at the chance to use StageWebView that is now part of the AIR 2.5 beta on Android devices.</p>
<h2><a href="http://www.flashmobileblog.com/wp-content/uploads/2010/07/TwitterWidget.zip">Download Source</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/07/17/air2-5-stagewebview-demo-oauth-support/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Launching m.flash.com &amp; BBC iPlayer for Android</title>
		<link>http://www.flashmobileblog.com/2010/06/24/bbc-launch-iplayer-android-mflashcom/</link>
		<comments>http://www.flashmobileblog.com/2010/06/24/bbc-launch-iplayer-android-mflashcom/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 19:16:41 +0000</pubDate>
		<dc:creator>Mark Doherty</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Flash Player]]></category>
		<category><![CDATA[Mobile Content]]></category>
		<category><![CDATA[BBC]]></category>
		<category><![CDATA[Flash Player 10.1]]></category>
		<category><![CDATA[Froyo]]></category>
		<category><![CDATA[iPlayer]]></category>
		<category><![CDATA[m.flash.com]]></category>

		<guid isPermaLink="false">http://www.flashmobileblog.com/?p=1131</guid>
		<description><![CDATA[m.flash.com We have released Flash Player 10.1 to our OEM partners in what has been an incredible engineering effort working with our Open Screen Project partners.  One of the problems with the Flash Player generally, is that it is invisbile.  As a user its so easy to forget that a single web technology is powering [...]]]></description>
			<content:encoded><![CDATA[<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="601" height="451" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=12831411&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="601" height="451" src="http://vimeo.com/moogaloop.swf?clip_id=12831411&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
<p><strong>m.flash.com</strong></p>
<p>We have released Flash Player 10.1 to our OEM partners in what has been an incredible engineering effort working with our Open Screen Project partners.  One of the problems with the Flash Player generally, is that it is invisbile.  As a user its so easy to forget that a single web technology is powering billions of videos, games, Rich Internet Applications and now desktop applications with AIR.</p>
<p>So we have been working with the worlds leading content providers, alongside our OEM partners to create experiences that shine.  With that, we&#8217;ve aggregated these together over at <a href="http://m.flash.com">m.flash.com</a> so that you can enjoy them on your mobile phones.  I think it will really help to sell those mobile and device projects that we&#8217;ve all been thinking about.</p>
<p><strong>iPlayer</strong></p>
<p>If I&#8217;m honest, this is the one that I have been most excited about, and this week the BBC <a href="http://www.bbc.co.uk/blogs/bbcinternet/2010/06/bbc_iplayer_on_mobile_a_new_ve.html">launched</a> iPlayer 3.0. with support for Android Froyo devices and Flash Player 10.1.  As I live in the UK, and I know many of you don&#8217;t, let&#8217;s take a look at just how huge the service has become.</p>
<p>Simply put, iPlayer is like Hulu for BBC content providing video on demand services for UK citizens.  Using the service we can watch BBC content that we&#8217;ve missed, across 10 TV channels and 11 radio stations.  On top of that, we can also watch TV live using iPlayer online to work around poor terrestrial signals &#8211; or in my case, a tiny television <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><strong>In perspective (BBC iStats for May 2010)</strong></p>
<ul>
<li>130m radio and television streams watched, across PCs, consoles and mobile phones</li>
<li>13m live streams were broadcast, including a huge amount of live radio proportional to video streams</li>
<li>6.5m video/radio requests from mobile phones</li>
<li>Peak usage tracks linear broadcast usage almost exactly &#8211; the shape of things to come <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<p>Currently the iPlayer is available on the Nintendo Wii, PS3, Mac, Windows, Linux, Symbian, Windows Mobile and iOS devices.  As you would expect, when it comes to scaling the iPlayer platform across all of these devices, the task is huge.  That&#8217;s where Flash comes in, if you look at the list above (and more still) we have demonstrated Flash on all of them.</p>
<p>When you test your Flash-enabled site, why not let me know?  Let&#8217;s add it to m.flash.com <img src='http://www.flashmobileblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.flashmobileblog.com/2010/06/24/bbc-launch-iplayer-android-mflashcom/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

