<?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"
	>

<channel>
	<title>PavingWays</title>
	<atom:link href="http://www.pavingways.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pavingways.com</link>
	<description>mobile web applications</description>
	<pubDate>Fri, 19 Mar 2010 21:47:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Node.js is Important. An Introduction</title>
		<link>http://www.pavingways.com/nodejs-node-is-important-introduction_1288.html</link>
		<comments>http://www.pavingways.com/nodejs-node-is-important-introduction_1288.html#comments</comments>
		<pubDate>Fri, 19 Mar 2010 21:46:20 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Mobile Ajax]]></category>

		<category><![CDATA[Mobile Web]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[node.js]]></category>

		<category><![CDATA[SSJS]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1288</guid>
		<description><![CDATA[Once in a while you come across a new technology and are just blown away by it. You feel that something like this should have been around much earlier and that it is (gonna be) a significant milestone, not just in your own live as a developer but in general. 
The last time this happened [...]]]></description>
			<content:encoded><![CDATA[<p>Once in a while you come across a new technology and are just blown away by it. You feel that something like this should have been around much earlier and that it is (gonna be) a significant milestone, not just in your own live as a developer but in general. </p>
<p>The last time this happened to me was when I dug a bit deeper into a project called <a href="http://nodejs.org/">node.js</a> or just &#8220;node&#8221; as the binary is called. In case you have not heard about this don&#8217;t worry. However, if you are a developer, especially if you are working with JavaScript, then you should be concerned and maybe check your news sources, because it is a couple of months old already and it is drawing a lot of attention lately! If you&#8217;re not a developer this might get a bit techy from here, but maybe you get something out of it after all&#8230;</p>
<p>Ok so what is node.js? It&#8217;s actually not too easy to explain, but basically node.js is an:</p>
<ul>
<li>open-source</li>
<li>low-level</li>
<li>evented</li>
<li><a href="http://en.wikipedia.org/wiki/Asynchronous_I/O">non-blocking</a></li>
<li><a href="http://en.wikipedia.org/wiki/Event_loop">event loop</a> based</li>
<li><a href="http://en.wikipedia.org/wiki/Server-side_JavaScript">SSJS</a> runtime environment</li>
</ul>
<p>It is written in C and JavaScript, it contains the <a href="http://en.wikipedia.org/wiki/V8_(JavaScript_engine)">V8 JavaScript engine</a>, a <a href="http://commonjs.org/">CommonJS</a> module system and it helps you to implement highly <a href="http://en.wikipedia.org/wiki/Concurrency_(computer_science)">concurrent web servers</a> by handling I/O very efficiently, namely in a <a href="http://www.kegel.com/dkftpbench/nonblocking.html">non-blocking</a> way. Support for TCP, DNS and HTTP is included and many HTTP features are supported that are important for <a href="http://en.wikipedia.org/wiki/Comet_(programming)">Comet</a>-style web applications - things like hanging requests.<br />
<span id="more-1288"></span><br />
Node.js itself is a program that will have to be compiled and installed on your machine. Then you can use JavaScript to write programs that use the API of node.js and that are executed through the node binary as simple as this: &#8220;node yourprogram.js&#8221;.<br />
Due to the included V8 you have the complete JavaScript API available, it&#8217;s just that you are not running your JavaScript program inside of a browser context, but as a program within the node.js environment. Node extends the JS API by several things like access to the file system and such. All of this is what <a href="http://en.wikipedia.org/wiki/Server-side_JavaScript">server-side JavaScript</a> is all about.</p>
<p>There are other implementations for this kind of stuff, but what <a href="http://tinyclouds.org/">Ryan Dahl</a> <a href="http://github.com/ry/node">et al</a> do differently with node.js is to use JavaScript as the programming language and the strict paradigm of exclusively working with callbacks and non-blocking I/O. This means that basically any function you are executing in a node.js program does work in the background after calling, executing a callback function once it is done. This enables the program itself to continue and not to block any resources while it is waiting for the function to finish whatever it does.</p>
<p>Ok, this is a bit dry and mind-bending maybe, but it all makes a lot of sense: Think about <a href="http://www.kegel.com/c10k.html">thousands of internet users entering the URL of your website</a> causing their web browsers to hit your web server at the same time (maybe they fire Ajax requests too). Each of these requests would cause a thread in your regular web server (= Apache) to spawn that executes a script (PHP maybe) which does DB queries and such before finally returning the response to the browser. Here we have 2 things to look at: memory usage and blocking I/O. </p>
<p>Each of these threads uses memory. Many threads use a lot of memory. Thousands of users would cause thousands of threads to use a lot of memory&#8230;you see where this is going&#8230;you will run out of memory soon and your page or service will not respond anymore.<br />
Blocking I/O is the cause for that problem: each one of these threads does things like DB access which takes some time to finish. This is normal because the DB tables might be huge and queries might take long to find the result you are looking for.<br />
Now the script on your web server would usually execute a DB query, then wait until it gets a result from the DB server and then continue. While the DB server fetches your data your whole script is blocked. It does not continue to run until the result has come back and it is using memory and other resources while waiting. If this happens several thousand times at once this blocks loads of resources and your server goes into a memory dry spell. </p>
<p>If it would be possible to get rid of all these threads and to put them all into a big pool this would solve some memory issues. If it on top of that would be possible to continue doing other tasks while waiting for DB queries this would surely help performance to increase - and that&#8217;s what node.js does. </p>
<p>A node-based server will pool all incoming connections and the underlying node framework can do things like hanging these connections to a &#8220;waiting&#8221; state while allowing the server to continue working on creating the response. The event loop and the callback paradigm in node.js is used to execute a DB query, but not wait for a response blocking a lot of resources. Rather a callback is attached to the DB result and node.js goes on with other tasks (saving CPU cycles). For the browser on the other side this results simply in a &#8220;waiting for response&#8221; situation, same as for the threaded server.</p>
<p>So, whenever the result from the DB comes back, node.js is executing whatever callback function was attached to the querying function and once the request is ready it will get the related connection from the pool, end its &#8220;waiting&#8221; state and return it to the browser. This is causing way less memory usage and allows for much faster response times.</p>
<p>This is just a tiny bit of the whole story, so make sure you <a href="http://s3.amazonaws.com/four.livejournal/20091117/jsconf.pdf">get into</a> this! </p>
<p>But why is this important? Well, Ajax and Comet-driven web applications are generating heavy load on web servers, especially if you look at chat applications or multiplayer browser games where there are many concurrent connections and small response times are essential. Here lays the strength of node.js. </p>
<p>In the past to me it felt like we had reached a time where the traditional way to implement our web servers  would not fit to the demands that we had on the client-side during the last months. <a href="http://cometdaily.com/2007/12/11/the-future-of-comet-part-1-comet-today/">Comet and Ajax-Push is a big hack</a>, <a href="http://dev.w3.org/html5/websockets/">HTML5 Web Sockets</a> are knocking at our door and we want to do things like <a href="http://www.google.com/search?q=data+streaming+realtime+web">real time data streaming</a>. </p>
<p>Node.js can fill this need. Sure, it takes some time of getting used to for developers that have been working with &#8220;traditional&#8221; Ajax paradigms for the past years. It also seems like we would walk into a time where regular websites and Ajax driven web applications would get their own servers. But it surely feels like we would finally have a toolkit which solves many of our newly developed needs and which brings the web as a whole a big step further. It might well be the best thing since sliced bread.</p>
<p>On top of that it is now possible to write a simple web server and basically all the server side logic in JavaScript, which is great if you are working with JavaScript on the client side as well. </p>
<p>To close this I can just encourage anybody working with Ajax or Comet or even just JavaScript in any way <a href="http://s3.amazonaws.com/four.livejournal/20091117/jsconf.pdf">to look into node.js</a> - it helped me to understand web server issues in more detail and I will be working with this and see where it goes. As it seems some <a href="http://wiki.github.com/ry/node/">others are working with this already too</a> and even Simon Willison <a href="http://simonwillison.net/2009/Nov/23/node/">was excited</a> after Ryan Dahl gave a good introduction to node.js at <a href="http://jsconf.eu/2009/">last year&#8217;s JSConf</a>:<br />
<embed src="http://blip.tv/play/AYGylE4C" type="application/x-shockwave-flash" width="400" height="250" allowscriptaccess="always" allowfullscreen="true"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/nodejs-node-is-important-introduction_1288.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Baby Roulette now in App Store - some insights&#8230;</title>
		<link>http://www.pavingways.com/baby-roulette-now-available-app-store_1259.html</link>
		<comments>http://www.pavingways.com/baby-roulette-now-available-app-store_1259.html#comments</comments>
		<pubDate>Wed, 17 Mar 2010 19:15:04 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1259</guid>
		<description><![CDATA[ Today our first iPhone game called &#8220;Baby Roulette&#8221; was published on the Apple App Store. The whole submission process was really fast. We submitted our app to Apple on Sunday afternoon, it went into review on Monday noon and today (Wednesday) morning it was published on the iTunes Application Store.
The game is very very [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bit.ly/babyroulette"><img class="size-medium wp-image-1262 alignleft" style="margin: 1px 5px;" title="ladebildschirm" src="http://www.pavingways.com/wp-content/uploads/ladebildschirm-200x300.jpg" alt="" width="200" height="300" /></a> Today our <strong>first iPhone game</strong> called &#8220;<strong><a href="http://www.pavingways.com/games/babyroulette/">Baby Roulette</a></strong>&#8221; was <a href="http://bit.ly/babyroulette">published on the Apple App Store</a>. The whole submission process was really fast. We submitted our app to Apple on Sunday afternoon, it went into review on Monday noon and today (Wednesday) morning it was published on the iTunes Application Store.</p>
<p>The game is very very simple, so maybe that&#8217;s one of the factors for a speedy release&#8230;</p>
<p><strong>Why did we build an app like this?</strong></p>
<p>Baby Roulette is a really simple and fun game for kids (mostly) to learn animal sounds. Our main intention for building this game is to get a simple and nice looking game quickly in as many App Stores as possible starting with Apple. Our next targets will be the <a href="http://store.ovi.com/">Ovi Store</a> , <a href="http://www.android.com/market/">Android Market</a> and <a href="http://www.vodafone360.com/en/web/home/index">Vodafone 360</a>, which is still running the &#8220;<a href="http://widget.developer.vodafone.com/appstar">Vodafone 360 App Star Competition</a>&#8220;.</p>
<p>We mainly want to gain insights about different application stores regarding users, downloads, major downloading countries, devices and of course we want to practically go through the whole process of building an application/game and releasing and actually selling it on different app stores. This will help us to enlighten our clients and of course we are also blogging about it. So here are some first facts&#8230;</p>
<p><span id="more-1259"></span></p>
<p><strong>What did we want to build?</strong></p>
<p>Our goal was to create a game or something to play with that would employ 2 major components for any game: animation and sound. We have a spinning arrow as an animation and we are playing sounds when the arrow spins and whenever the arrow stops (plays the animal&#8217;s voice). The game concept itself has been around for ages of course, there are similar offers on the app store but it was simple enough to implement it quickly (a few days).</p>
<p>Another main goal was to go international - that&#8217;s the reason we left out playing the typical, but localized &#8220;The pig says&#8230;&#8221; voice acting before the (international) animal sound. There is also no text except the title - however &#8220;Baby&#8221; and &#8220;Roulette&#8221; are both terms recognizable in a lot of languages even if they use a different alphabet.</p>
<p><strong>How did we build it?</strong></p>
<p><a href="http://phonegap.com/">Phonegap</a> - make sure you know about this application framework! It enables developers to write their application using web technologies - namely HTML, CSS and JavaScript - and then wrap it into a native application. The cool thing is, phonegap targets not only the iPhone, but all other major platforms, such as Android or BlackBerry and it provides access to device functionalities, such as the accelerometer or GPS location by extending the JavaScript API.</p>
<p>Originally the plan was not to use phonegap. The plan was to build a simple UIwebView application in Objective-C, the iPhone&#8217;s native programming language.<strong> The main application would then also have been written in HTML/CSS and JavaScript</strong>. This is essential to us as we see ourselves as a mobile web development company, not as iPhone or Android developers. We strongly believe that creating native applications is just an <strong><a href="http://www.bothsidesofthetable.com/2010/02/17/app-is-crap-why-apple-is-bad-for-your-health/">interim solution</a></strong> - the web will take over as the main application platform just as it did on the desktop. It&#8217;s just a matter of time, <a href="http://www.whatwg.org/specs/web-apps/current-work/">HTML5</a> guys!</p>
<p>Unfortunately the mobile version of Safari does not play sound in the browser, but opens up the fullscreen audio player. The &lt;audio&gt; tag of HTML5 is also not available (yet), so no sound and we went with phonegap. This means carrying a little overhead, but also brings the advantage of simpler portability to other platforms and we are very happy with this decision.</p>
<p><strong>Problems so far</strong></p>
<p>One major problem occurred as we were in the early stages of developing the web app: The spinning arrow used to be a &lt;canvas&gt; element that loads an image and is then rotated. As this rotation was scripted and angles were dynamically calculated, movement of the arrow was very smooth and without any obvious stepping. Also there was only one image - the arrow. Unfortunately this seems to result in heavy CPU load for anything below 3GS devices, so on an iPhone 3G the frame rate dropped notably.</p>
<p>Our solution was to go back to good old sprite animations. So now the arrow is just a &lt;div&gt; with a background sprite containing 60 versions of the arrow in 6 degree steps. The script now still calculates the current angle of the arrow as it spins, but now instead of rotating the image we are sliding the background image through the div so the matching version of the arrow is visible. This works, is fast enough on a 3G and it&#8217;s a proven technology. Too bad there&#8217;s no real HTML5 in there for now.</p>
<p><strong>Next steps<br />
</strong></p>
<p>We&#8217;ll release Baby Roulette for as many platforms as possible trying to keep porting efforts as low as possible and we&#8217;ll surely gain many insights as we do this. We are also  already working on other games, of course. These will all be web based and cross-platform, but next time interaction and multi-player functionality will be our main topics. Maybe we will target grownups next time too :)</p>
<p>In the meantime we&#8217;ll keep you up-to-date on porting to and releasing on different platforms and we hope you have fun playing <a href="http://itunes.apple.com/de/app/baby-roulette/id361958476?mt=8">Baby Roulette</a> with your kids or on your own!</p>
<p><a href="http://bit.ly/babyroulette"><img class="alignleft size-medium wp-image-1268" title="Baby Roulette on the App Store" src="http://www.pavingways.com/wp-content/uploads/appstore_button.png" alt="" width="140" height="47" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/baby-roulette-now-available-app-store_1259.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>HTML5/CSS3 Meetup March Recap</title>
		<link>http://www.pavingways.com/html5css3-meetup-march-recap_1254.html</link>
		<comments>http://www.pavingways.com/html5css3-meetup-march-recap_1254.html#comments</comments>
		<pubDate>Mon, 15 Mar 2010 00:07:11 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Conferences/Events]]></category>

		<category><![CDATA[Mobile Technologies]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1254</guid>
		<description><![CDATA[We have been planning to organize a local meetup group around the topics of HTML5 and CSS3 for a few months. These topics are necessary to get into for any serious developer in the area of web development. Also mobile developers need to know what&#8217;s up with it, especially if they are planning to develop [...]]]></description>
			<content:encoded><![CDATA[<p>We have been planning to organize a local meetup group around the topics of HTML5 and CSS3 for a few months. These topics are necessary to get into for any serious developer in the area of web development. Also mobile developers need to know what&#8217;s up with it, especially if they are planning to develop for the iPhone, Android phones or basically any other web-based platform. On top of this talking about experiences and learning from each other is a good way to get into any topic.</p>
<p>Some people were contacted and this past Tuesday the first HTML5 and CSS3 meetup in Frankfurt took place. We managed to gather a small bunch and met at the <a href="http://lokalbahnhof.info/">Lokalbahnhof</a>, a pretty nice restaurant / bar in Sachsenhausen. It turned out to become a very fun evening with good food and a couple of drinks. </p>
<p>HTML5 action was based around an introductory presentation that I was showing:</p>
<div style="width:425px" id="__ss_3431337"><object width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=html5-100314184324-phpapp02&#038;stripped_title=html5-intro" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=html5-100314184324-phpapp02&#038;stripped_title=html5-intro" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div>
<p>I was also showing a canvas demo intended to be used for the iPhone - after all we ended up replacing this part of the application with an old-school CSS sprite background animation for performance reasons, which was a learning on its own. Another Demo shown was a GameQuery-based shooter game that uses CSS3 animations to blow up enemy ships - amazing to look at and play - thanks for that Jesse!</p>
<p>There were various discussions about the two technologies. The concept of just sitting together without a real agenda, talking about a wide topic seems to work - I could learn some new things and I am sure the other attendees did too. Thanks to everyone who was there, it was a great evening!</p>
<p>We are now planning to do this monthly (roughly), so we are looking forward to April! If you want to come make sure you are filling out the <a href="http://www.doodle.com/fqvm94ruwivdabay">Doodle poll</a> so we can pick the best date!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/html5css3-meetup-march-recap_1254.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>MWC News: Google&#8217;s strategy and Android, Windows Marketplace &#8230;</title>
		<link>http://www.pavingways.com/mwc-news-googles-strategy-and-android-windows-marketplace_1232.html</link>
		<comments>http://www.pavingways.com/mwc-news-googles-strategy-and-android-windows-marketplace_1232.html#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:15:43 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Browsers]]></category>

		<category><![CDATA[Mobile Trends]]></category>

		<category><![CDATA[Mobile Web]]></category>

		<category><![CDATA[Mobile Widgets]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1232</guid>
		<description><![CDATA[Some more interesting news announced at the Mobile Word Congress:

Google&#8217;s new strategy &#8220;Mobile First&#8221;
Google’s new strategy: &#8220;Mobile First&#8221;  The company now focuses more on smartphones than on desktops. That means giving mobile top priority and launching new products first on mobile platforms before creating PC versions.
(Source: brighthand.com)


60,000 Android phone a day
Google&#8217;s Android launched a year [...]]]></description>
			<content:encoded><![CDATA[<p>Some more interesting news announced at the Mobile Word Congress:</p>
<ul>
<li><strong>Google&#8217;s new strategy &#8220;Mobile First&#8221;</strong><br />
Google’s new strategy: &#8220;Mobile First&#8221;  The company now focuses more on smartphones than on desktops. That means giving mobile top priority and launching new products first on mobile platforms before creating PC versions.</p>
<p>(Source: <a href="http://www.brighthand.com/default.asp?newsID=16235&amp;news=Google+Android+OS+CEO+Eric+Schmidt+Mobile+First">brighthand.com</a>)</li>
</ul>
<ul>
<li><strong>60,000 Android phone a day</strong><br />
Google&#8217;s Android launched a year ago and is now available on <strong>26 different devices in 48 countries</strong>. <strong>60.000 Android devices</strong> running this operating systems are now <strong>being sold on a daily basis</strong> … meaning about<strong> 5.4 million</strong> handsets per quarter, or <strong>21 million</strong> per year. <a href="http://www.pavingways.com/smart-phone-sales-up-30-in-q4-2009_1174.html">Apple sold 8.7 million iPhones last quarter and 25 million in 2009</a>. Seems like Android is gaining ground, hopefully internal fragmentation will be taken care of (if that&#8217;s possible).</p>
<p>(Source: <a href="http://blog.mobilegamesblog.com/2010/02/mwc-google-pleased-with-android-performance.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+MobileGamesBlog+%28Mobile+Games+Blog.com%29">mobilegamesblog.com</a>)</p>
<p><span id="more-1232"></span></li>
</ul>
<ul>
<li><strong>Windows Marketplace for Mobile has been updated</strong><br />
Windows Marketplace for Mobile, Microsoft&#8217;s application store, has been updated. The biggest change is there will <strong>no</strong> longer be <strong>regional limitations</strong> on where apps are sold. This is great news for non-US customers because they could only see localized apps and the selection was very limited. Now thanks to the &#8220;geo selector&#8221; users can browse and purchase applications from different geographic catalogs / countries. The price of each app will show up in the <strong>user&#8217;s local currency</strong>. Besides users can install downloaded apps onto their <strong>storage cards</strong>.</p>
<p>Developers also <strong>do not have to pay a US$10 fee </strong>for submitting their apps to additional markets anymore - only the US$ 99 submission fee has to be paid. <strong>VOIP apps</strong> will now be allowed unless a carrier specifically prohibits it. Microsoft now also opens its marketplace to <strong>Russia</strong>.</p>
<p>BTW Mobilegamesblog.com published some first screenshots of Windows Marketplace for the Windows Phone 7 Series devices. There is no real source named for these images, so they should be considered as a rumor: <a href="http://blog.mobilegamesblog.com/2010/02/first-screens-windows-phone-7-marketplace.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+MobileGamesBlog+%28Mobile+Games+Blog.com%29">mobilegamesblog.com</a></p>
<p>(Sources: <a href="http://www.informationweek.com/blog/main/archives/2010/02/windows_marketp_2.html;jsessionid=FQYMNXD2GEXUVQE1GHOSKHWATMY32JVN">informationweek.com</a>, <a href="http://www.theunwired.net/?item=mwc10-live-microsoft-updates-windows-marketplace-for-mobile-adds-features-and-enhancements&amp;5339">theunwired.net</a>)</li>
</ul>
<ul>
<li><strong>Alcatel unveils first Android phone</strong><br />
Handset maker Alcatel unveiled a number of new handsets at Mobile World Congress and interestingly its first Android-based phone OT-980. The phone will be available around June for less than 200 EUR in the UK, France, Spain and Italy. But they are still considering using other platforms, such as Windows Mobile, if prices come down.</p>
<p>(Sources: <a href="http://www.ciol.com/Technology/Mobility/News-Reports/Alcatel-jumps-on-Android-bandwagon/131717/0/">ciol.com</a>, <a href="http://www.totaltele.com/view.aspx?ID=453143">totaltele.com</a>)</li>
</ul>
<ul>
<li><strong>China Unicom and Huawei for low-cost smartphones</strong><br />
China Unicom plans to launch low-cost 3G smartphones - maybe in collaboration with Huawei which has also recognized that smartphones remain too expensive. “Key to unlocking the potential usage of 3G is the need for a $150 smartphone with iPhone-like capabilities ,” said Guo Ping, CSO, Huawei Technologies and chairman of Huawei devices.</p>
<p>(Source: <a href="http://www.mobilebusinessbriefing.com/article/china-unicom-huawei-eye-low-cost-smartphones">mobilebusinessbriefing.com</a>)</li>
</ul>
<ul>
<li><strong>Deutsche Telekom: Open Apps Approach</strong><br />
Deutsche Telekom plans to further integrate with mobile apps and content stores. By partnering with leading applications stores Deutsche Telekom wants to offer its customers a T-Mobile dedicated channel with specific recommendations and the opportunity for mobile phone billing (instead of credit card payment).<br />
“Deutsche Telekom&#8217;s open mobile internet strategy implies that customers ultimately get access to a wide choice of all available applications, regardless of their mobile phone brand. As a basis we provide easy log-in, registration, and payment processes, as well as Deutsche Telekom channels in existing stores and customer oriented recommendations,&#8221; states Rainer Deutschmann, Senior Vice President Mobile Products.</p>
<p>(Source: <a href="http://finchannel.com/Main_News/Tech/58408_Deutsche_Telekom_drives_open_approach_to_apps_and_content_stores/">finchannel.com</a>)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/mwc-news-googles-strategy-and-android-windows-marketplace_1232.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Almighty &#8220;Wholesale Applications Community&#8221;?</title>
		<link>http://www.pavingways.com/the-holy-wholesale-applications-community-wac_1225.html</link>
		<comments>http://www.pavingways.com/the-holy-wholesale-applications-community-wac_1225.html#comments</comments>
		<pubDate>Thu, 18 Feb 2010 13:43:52 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Widgets]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1225</guid>
		<description><![CDATA[At MWC a number of the world&#8217;s leading telco companies including Vodafone, Orange, Samsung, Sony Ericsson, LG, Deutsche Telecom, SK Telecom, Verizon, AT&#38;T or China Mobile have announced the formation of an international alliance called &#8220;Wholesale Applications Community&#8221; (WAC) - to battle Apple.
They are aiming to build an open platform for mobile apps to all [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://news.bbc.co.uk/2/hi/technology/8515813.stm">At MWC </a>a number of the world&#8217;s leading telco companies including Vodafone, Orange, Samsung, Sony Ericsson, LG, Deutsche Telecom, SK Telecom, Verizon, AT&amp;T or China Mobile have announced the formation of an international alliance called &#8220;<a href="http://www.wholesaleappcommunity.com/"><strong>Wholesale Applications Community</strong></a>&#8221; (WAC) - to battle Apple.</p>
<p>They are aiming to build <strong>an open platform for mobile apps to all mobile phone users</strong> and want <strong>to solve the massive fragmentation problem</strong>.</p>
<p>They try to develop a common standard for applications within the next 12 months. The WAC is supposed to be a platform NOT an app store.</p>
<p>Of course, the app market is still a lucrative business and growing. Analysts at Gardner predict that the number of app downloads will rise to 4.5 billion (from 2.5 billion last year), yielding almost $30bn.</p>
<p>So far so good. But what does that mean, especially for us developers? Is this the right approach in the &#8220;<a href="http://en.wikipedia.org/wiki/Write_once,_run_anywhere">write once, run anywhere</a>&#8221; direction?</p>
<p>The good thing is that the group intends to use existing open standards (JIL, BONDI, W3C) and that will make it a lot easier for developers creating apps across multiple platforms. Besides developers then have only one single gateway to access a vast potential and international customer base. It also saves a lot of time and resources. And the new alliance has access to more than three billion customers.</p>
<p>Well, does this sound too perfect to you? There are still a lot of questions and even doubts, right?<span id="more-1225"></span> Did they form this alliance just to beat Apple or do they really care about the developers? I mean in the end they are all competitors and every one wants a big - if not the biggest - part of the &#8220;app market cake&#8221;, right?</p>
<p>I also think it will be really hard to manage an organization of so many well-known and big companies. There will be many time-consuming processes to make even small decisions everybody is pleased with. We can see similar things going on at the W3C already.</p>
<p>Another important fact is that some platforms are already &#8220;hopelessly fragmented&#8221; as <a href="http://gigaom.com/2010/02/15/why-the-wac-is-whack/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+OmMalik+%28GigaOM%29">giagom</a> points out: Windows has <a href="http://jkontherun.com/2009/02/19/editorial-the-uphill-battle-microsoft-faces-with-windows-mobile/">struggled with the splintering of Windows Mobile</a> and Google is <a href="http://jkontherun.com/2009/10/15/businessweek-android-faces-danger-of-fragmentation/">suffering from the emergence of multiple versions of Android</a>.</p>
<p>Will the WAC succeed? I guess it is too early to answer this question, but for sure it will be very very difficult to reach their ambitious goals - if not impossible. The idea is good and the app market needs standardization, but there are a lot of obstacles to overcome. Probably too many for the big companies that are involved in this organization.</p>
<p>Maybe this kind of organization should be built by developers, not telcos who are mainly interested in selling not building apps. Even the Chamber of Industry and Commerce consists of handicraft businesses not of retailers. What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/the-holy-wholesale-applications-community-wac_1225.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>More MWC News: Symbian, Nokia, Ericsson &#8230;</title>
		<link>http://www.pavingways.com/more-mwc-news-symbian-nokia-ericsson_1199.html</link>
		<comments>http://www.pavingways.com/more-mwc-news-symbian-nokia-ericsson_1199.html#comments</comments>
		<pubDate>Tue, 16 Feb 2010 00:05:58 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Web]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1199</guid>
		<description><![CDATA[Instead of a lengthy blog post here is just a wrap-up of quite interesting news announced at the Mobile Word Congress today:

Symbian joins Open Screen Project
The Symbian Foundation is joining the Open Screen Project, an industry-wide initiative led by Adobe to enable the Adobe Flash Platform across a broad range of devices. This means that [...]]]></description>
			<content:encoded><![CDATA[<p>Instead of a lengthy blog post here is just a wrap-up of quite interesting news announced at the Mobile Word Congress today:</p>
<ul>
<li><strong>Symbian joins Open Screen Project</strong><br />
The <a href="http://www.symbian.org/">Symbian Foundation</a> is joining the <a href="http://www.openscreenproject.org/ ">Open Screen Project</a>, an industry-wide initiative led by Adobe to enable the Adobe Flash Platform across a broad range of devices. This means that Symbian will be integrating Flash 10.1 in future releases of the platform.</p>
<p>(Sources: <a href="http://www.allaboutsymbian.com/news/item/11140_Symbian_join_Adobes_Open_Scree.php">allaboutsymbian.com</a>, <a href="http://eon.businesswire.com/portal/site/eon/permalink/?ndmViewId=news_view&amp;newsId=20100215005260&amp;newsLang=en">eon.businesswire.com</a>)</li>
</ul>
<ul>
<li><strong>Ericsson launches eStore</strong><br />
Today, Ericsson unveiled an application store product for mobile operators allowing them to set up their own application store. The <a href="http://estore.ericsson.com/"><strong>eStore</strong></a> is available in 25 markets worldwide, reaching more than 1 billion subscribers throughout more than 100 operator networks. It already has 30,000 free and paid apps and games. The eStore is backed by <a href="http://www.opera.com/">Opera</a> who provides the client framework for widgets and applications across multiple channels and devices.</p>
<p>(Sources: <a href="http://blog.mobilegamesblog.com/2010/02/mwc-ericssons-estore-launches.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+MobileGamesBlog+%28Mobile+Games+Blog.com%29">mobilegamesblog.com</a>, <a href="http://finchannel.com/Main_News/Tech/58321_Opera_technology_fuels_new_eStore/">finchannel.com</a>)</p>
<p><span id="more-1199"></span></li>
</ul>
<ul>
<li><strong>Intel and Nokia release new Linux OS &#8220;MeeGo&#8221;</strong><br />
Intel and Nokia have merged <a href="http://moblin.org/">Moblin</a> and <a href="http://maemo.org/">Maemo</a> into <a href="http://meego.com/"><strong>MeeGo</strong></a>, a Linux based software platform designed to run <strong>on any device</strong> from cars and home phones to computers and mobile phones. So MeeGo is a primary competitor to Google&#8217;s Linux-based Android as well as to Apple&#8217;s iPhone software and Microsoft&#8217;s Windows Mobile.<br />
MeeGo will ensure that third-party developers will be available to reach the wide range of product types mentioned above. Developers can create applications for MeeGo using the <a href="http://qt.nokia.com/">Qt framework</a> and can market their apps through <a href="https://store.ovi.com/">Nokia’s Ovi Store</a> and <a href="http://www.intel.com/appup/">Intel AppUpSM Center</a>.<br />
The first version of MeeGo will be available in the second half of 2010. Nokia also said that it will continue to sell and develop its Symbian smartphone operating system alongside MeeGo.</p>
<p>(Sources: <a href="http://www.eweek.com/c/a/Midmarket/MWC-Nokia-Intel-Partner-on-LinuxBased-MeeGo-Platform-591963/">eweek.com</a>, <a href="http://www.infosyncworld.com/news/n/10813.html">infosyncworld.com</a>, <a href="http://blog.mobilegamesblog.com/2010/02/intel-and-nokia-release-a-new-os-called-meego.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+MobileGamesBlog+%28Mobile+Games+Blog.com%29">mobilegamesblog.com</a>, <a href="http://bits.blogs.nytimes.com/2010/02/15/intel-and-nokia-team-up-on-mobile-software/">nytimes.com</a>)</li>
</ul>
<ul>
<li><strong>Samsung unveils first bada phone &#8220;Wave&#8221;</strong><br />
Samsung has unveiled <a href="http://www.bada.com/launch-of-samsung-wave-press-release/"><strong>&#8220;Wave&#8221;</strong></a> (Model S8500), the first smartphone which is based on Samsung&#8217;s own mobile operating system <a href="http://www.bada.com/"><strong>bada</strong></a> and features Social Hub, a social networking/messaging platform. Samsung’s bada platform allows mobile users to download applications from<strong> <a href="http://www.samsungapps.com/">Samsung Apps</a></strong>, an integrated application store accessible from the device and online. Already launched in the UK, France, Italy, Singapore, Germany, Brazil and China, the store will be expanded to more than 50 countries all over the world in 2010. The bada SDK will be launched in March.<br />
“bada will be one of our platforms,” said Dr Hosoo Lee, Executive Vice President and Head of the Media Solution Center at Samsung Electronics. “We are still working on Android, preparing for new Windows Mobile features coming this year, and also LiMo.”</p>
<p>(Sources: <a href="http://twitter.com/SamsungMWC">SamsungMWC Twitter</a>, <a href="http://samsungmwc2010.com/">Samsung MWC site</a>, <a href="http://www.bada.com/category/blog/page/2/">Wave Press Release</a>, <a href="http://www.eweek.com/c/a/Midmarket/MWC-Samsung-Rolls-Out-Wave-Smartphone-with-Bada-OS-383061/">eweek.com</a>, <a href="http://www.mobilebusinessbriefing.com/article/samsung-aims-to-make-waves-with-bada">mobilebusinessbriefing.com</a>)</li>
</ul>
<ul>
<li><strong>Vodafone 300,000 360 devices &amp; 7,000 apps</strong><br />
Only a few months after the launch of the Vodafone 360 devices the operator has already sold over 300,000 handsets (H1 and M1) and has more than 7,000 apps and games for those devices available for download from the Vodafone 360 Apps Shop.</p>
<p>(Source: <a href="http://www.mobile-ent.biz/news/36049/MWC-2010-Vodafone-sells-300000-360-handsets">mobile-ent.biz</a>)</li>
</ul>
<ul>
<li><strong>Windows Phone 7 Series</strong><br />
Finally Microsoft has unveiled its newest version of Windows Mobile known as <strong>Windows Phone 7 Series</strong> and it is connected with the Xbox Live environment. The home screen consists mainly of Widgets (named<strong> Live Tiles</strong>) and the phones will also have all the functionality of the Zune HD:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="395" height="240" 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://www.youtube.com/v/7IOTrqlz4jo&amp;hl=en_US&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" width="395" height="240" src="http://www.youtube.com/v/7IOTrqlz4jo&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/more-mwc-news-symbian-nokia-ericsson_1199.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Adobe AIR goes mobile &#038; joins LiMo</title>
		<link>http://www.pavingways.com/adobe-air-goes-mobile-joins-limo_1195.html</link>
		<comments>http://www.pavingways.com/adobe-air-goes-mobile-joins-limo_1195.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 23:57:52 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Web]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1195</guid>
		<description><![CDATA[At Mobile World Congress 2010, Adobe announced today that it will bring Adobe Air to mobile devices, starting with Android and Blackberry phones.
At the moment you can build desktop web applications with AIR that run outside the browser on multiple operating systems, but soon it will be possible to create Android and Blackberry apps as [...]]]></description>
			<content:encoded><![CDATA[<p>At Mobile World Congress 2010, Adobe announced today that it will bring <a href="http://www.adobe.com/products/air/">Adobe Air</a> to <strong>mobile devices</strong>, starting with Android and Blackberry phones.</p>
<p>At the moment you can build desktop web applications with AIR that run outside the browser on multiple operating systems, but soon it will be possible to create Android and Blackberry apps as well. These mobile apps will be able to store data locally on the phone, access other data on the phone such as photos, and be distributed as regular apps in the Android and Blackberry app stores. Not only that, but the same apps created with Flash developer tools will be exportable as iPhone apps (&#8221;<a href="http://labs.adobe.com/technologies/flashcs5/appsfor_iphone/">Packager for iPhones</a>&#8220;). <strong>The big picture is that developer can create applications once with Adobe&#8217;s developer tools and then output them as AIR apps for Android and Blackberry phones, native iPhone apps, or Flash apps on the Web.</strong><span id="more-1195"></span></p>
<p>&#8220;Adobe AIR 2.0 is a great technology for developing engaging mobile applications,&#8221; said Christy Wyatt, vice president, Software Applications and Ecosystem at Motorola. &#8220;We look forward to seeing AIR come to the Android platform and developers creating applications that will delight our end-users.&#8221;</p>
<p>Furthermore, Adobe has<strong> joined the mobile-Linux-on-phones group</strong> (<a href="http://www.limofoundation.org/">LiMo Foundation</a>) and will work with LiMo members (LG Electronics, NEC, NTT Docomo, Orange, Samsung, SK Telecom, Vodafone etc.) to add a Flash Player API to LiMo. Adobe wants to see Flash Player on nearly all mobile platforms. Only Apple is constantly rejecting Flash, preferring to use HTML5 rather than incorporate with Adobe&#8217;s proprietary runtimes into the iPhone and iPad.</p>
<p>Looking at the desktop space Adobe Air surely has many advantages to offer developers, so we feel like this might be a good tool to develop apps for mobile phones too. We have added Adobe Air as a possible engine for application development to our <a title="mobile widget wiki" href="http://www.pavingways.com/mobile-widget-wiki/">mobile widget wiki</a>. The crowd of <a title="mobile widget engines" href="http://www.pavingways.com/mobile-widget-wiki/mobile-widget-engine-overview">mobile widget engines</a> is still a growing one and various competitors are entering the space. Aside from more developers being attracted to mobile development, this also means increased fragmentation - unfortunately. On the other hand any tool enabling us to reach new devices and markets is always welcome.</p>
<p><strong>Sources:</strong><br />
<a href="http://blog.mobilegamesblog.com/2010/02/mwc-adobe-air-goes-mobile.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+MobileGamesBlog+%28Mobile+Games+Blog.com%29">blog.mobilegamesblog.com</a><br />
<a href="http://www.h-online.com/open/news/item/Adobe-announces-AIR-for-mobile-devices-and-joins-LiMo-foundation-930436.html">h-online.com</a><br />
<a href="http://www.marketwatch.com/story/adobe-joins-limo-foundation-2010-02-15?reflink=MW_news_stmp">marketwatch.com</a><br />
<a href="http://www.sfgate.com/cgi-bin/blogs/techchron/detail?&amp;entry_id=57224">sfgate.com</a><br />
<a href=" http://www.washingtonpost.com/wp-dyn/content/article/2010/02/15/AR2010021500015.html">washingtonpost.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/adobe-air-goes-mobile-joins-limo_1195.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Smart Phone Sales up 30 % in Q4, 2009</title>
		<link>http://www.pavingways.com/smart-phone-sales-up-30-in-q4-2009_1174.html</link>
		<comments>http://www.pavingways.com/smart-phone-sales-up-30-in-q4-2009_1174.html#comments</comments>
		<pubDate>Wed, 10 Feb 2010 12:52:42 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Statistics]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1174</guid>
		<description><![CDATA[Some interesting stats about smart phone sales&#8230;
Worldwide sales of smart phones grew 30 percent in the fourth quarter of 2009 to 53 million phones, according to researcher Strategy Analytics.
Nokia led market volumes, ahead of Research in Motion (RIM) and Apple, and shipped 20.8 million smart phones during the fourth quarter – up 38% from one [...]]]></description>
			<content:encoded><![CDATA[<p>Some interesting stats about smart phone sales&#8230;</p>
<p>Worldwide sales of smart phones grew <strong>30 percent</strong> in the fourth quarter of 2009 to <strong>53 million phones</strong>, according to researcher <a href="http://www.strategyanalytics.com/">Strategy Analytics</a>.</p>
<p>Nokia led market volumes, ahead of Research in Motion (RIM) and Apple, and shipped 20.8 million smart phones during the fourth quarter – up 38% from one year ago.</p>
<p><a href="http://www.pavingways.com/wp-content/uploads/strategic-analytics-q4-2009-11.jpg"><img class="size-full wp-image-1180 alignleft" title="strategic-analytics-q4-2009-11" src="http://www.pavingways.com/wp-content/uploads/strategic-analytics-q4-2009-11.jpg" alt="" width="500" height="189" /></a></p>
<p><span id="more-1174"></span></p>
<p><a href="http://www.pavingways.com/wp-content/uploads/strategic-analytics-q4-2009-22.jpg"><img class="size-full wp-image-1183 alignleft" title="strategic-analytics-q4-2009-22" src="http://www.pavingways.com/wp-content/uploads/strategic-analytics-q4-2009-22.jpg" alt="" width="500" height="198" /></a></p>
<p>I also found  an interesting chart from ComScore about <strong>U.S. smartphone platform share</strong>, or installed base &#8212; representing both existing devices and new sales during each period, not just new sales. (Source: <a href="http://www.businessinsider.com/chart-of-the-day-windows-mobile-apple-blackberry-share-2010-2">businessinsider.com</a> - please check out the comments there - really interesting discussion is going on there)</p>
<p><a href="http://www.pavingways.com/wp-content/uploads/smartphone-platform-share.gif"><img class="alignleft size-full wp-image-1228" title="smartphone-platform-share" src="http://www.pavingways.com/wp-content/uploads/smartphone-platform-share.gif" alt="" /></a></p>
<p><strong>Sources:</strong><br />
<a href="http://en.c114.net/578/a481454.html">c114.net</a><br />
<a href="http://www.areamobile.de/news/14154-studie-smartphone-verkaufszahlen-im-vierten-quartal-2009-weltweit-um-30-prozent-gestiegen">areamobile.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/smart-phone-sales-up-30-in-q4-2009_1174.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Even More Mobile Applications Hit Cars</title>
		<link>http://www.pavingways.com/even-more-mobile-applications-hit-cars_1162.html</link>
		<comments>http://www.pavingways.com/even-more-mobile-applications-hit-cars_1162.html#comments</comments>
		<pubDate>Tue, 09 Feb 2010 13:00:28 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Technologies]]></category>

		<category><![CDATA[Mobile Trends]]></category>

		<category><![CDATA[Mobile Web]]></category>

		<category><![CDATA[Mobile Widgets]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1162</guid>
		<description><![CDATA[Last year in October I wrote in a blog post about smart phone applications coming to cars. Today I read an article about Deutsche Telekom and tyre maker Continental joining this market as well.
They plan to put apps into all vehicles via an Android-based on-board computer. The prototype called AutoLinQ will be demonstrated at this year&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pavingways.com/wp-content/uploads/autolinq.png"><img class="alignleft size-full wp-image-1164" style="margin: 1px 5px;" title="autolinq" src="http://www.pavingways.com/wp-content/uploads/autolinq.png" alt="" width="212" height="133" /></a>Last year in October I wrote in a <a href="http://www.pavingways.com/mobile-applications-hit-cars_1031.html">blog post</a> about smart phone applications coming to cars. Today I read an article about <a href="http://www.telekom.com/">Deutsche Telekom</a> and tyre maker <a href="http://www.conti-online.com/">Continental</a> joining this market as well.</p>
<p>They plan to put apps into all vehicles via an Android-based on-board computer. The prototype called <a href="http://www.autolinq.de/"><strong>AutoLinQ</strong></a> will be demonstrated at this year&#8217;s <a href="http://www.cebit.de/homepage_e">Cebit show</a>. Inspired by the iPhone drivers can search for apps, download music, pick up news, check emails and answer them by using voice recording technology. The promise is: <strong>all without taking hands off the wheel or eyes off the road!</strong></p>
<p>Deutsche Telekom said in a statement that the core functions of AutoLinQ include an online address book linked to the navigation system. Drivers can type in journey destinations on the computer at home or work before getting in the car, or via their mobile phone when out and about. As the vehicle is connected to Deutsche Telekom&#8217;s mobile network, drivers can call up information that tells them where the car is parked, or check whether the sunroof is open and close it remotely using their phone.</p>
<p><span id="more-1162"></span>According to the website of AutoLinQ, Continental plans to work with Android developers and automakers to certify a core set of applications. An <strong>AutoLinQ SDK</strong> is scheduled to be released already <strong>by the end of the first quarter this year</strong> - probably due to its closeness to the regular Android SDK.</p>
<p>In the <strong>second half of 2010</strong> Continental plans to demonstrate first applications and of course the new app store to automotive customers (yes another app store&#8230;).<strong></strong></p>
<p><strong>Sources:</strong><br />
<a href="http://www.autolinq.de/">AutoLinQ</a><br />
<a href="http://www.conti-online.com/generator/www/de/en/continental/automotive/themes/passenger_cars/interior/connectivity/autolinq/pi_autolinq_en.html">AutoLinQ</a> (Continental Website)<br />
<a href="http://www.computerweekly.com/Articles/2010/02/01/240139/deutsche-telekom-picks-android-for-in-car-apps.htm">computerweekly.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/even-more-mobile-applications-hit-cars_1162.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Mobile Applications on TVs</title>
		<link>http://www.pavingways.com/mobile-applications-on-tvs_1153.html</link>
		<comments>http://www.pavingways.com/mobile-applications-on-tvs_1153.html#comments</comments>
		<pubDate>Mon, 08 Feb 2010 13:18:28 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Trends]]></category>

		<category><![CDATA[Mobile Widgets]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1153</guid>
		<description><![CDATA[After mobile phones and cars we now will be able to access our mobile apps on TV - This really is exciting news:
At CES 2010 in Las Vegas Samsung announced the upcoming availability of of free and paid apps in Samsung&#8217;s Apps store, including apps for Televisions, Blu-Ray Players, Home Theater and Mobile Phones. The [...]]]></description>
			<content:encoded><![CDATA[<p>After mobile phones and <a href="http://www.pavingways.com/mobile-applications-hit-cars_1031.html">cars</a> we now will be able to access our mobile apps on TV - This really is exciting news:</p>
<p>At CES 2010 in Las Vegas Samsung announced the upcoming availability of of free and paid apps in <a href="http://www.pavingways.com/mobile-widget-wiki/manufacturer-driven-application-stores">Samsung&#8217;s Apps store</a>, including apps for <strong>Televisions</strong>, <strong>Blu-Ray Players</strong>, <strong>Home Theater</strong> and <strong>Mobile Phones</strong>. The <a href="http://tv.samsungapps.com/">download service for TVs</a> will be available in July 2010.</p>
<p>I found two interesting videos from Samsung&#8217;s press conferences:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="420" height="315" 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://www.youtube.com/v/yH8nQHN_3dE&amp;hl=en_US&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" width="420" height="315" src="http://www.youtube.com/v/yH8nQHN_3dE&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><span id="more-1153"></span><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="420" height="315" 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://www.youtube.com/v/hB1Q2eiSpAQ&amp;hl=en_US&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" width="420" height="315" src="http://www.youtube.com/v/hB1Q2eiSpAQ&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I guess other manufacturer will enter the market pretty soon, too. It seems the web is getting more and more ubiquitous…<a href="http://www.pavingways.com/mobile-widgets-the-ubiquitous-mobile-web_84.html">again</a>.</p>
<p><strong>Sources:</strong><br />
<a href="http://tv.samsungapps.com/">tv.samsungapps.com</a><br />
<a href="http://www.mirror.co.uk/news/technology/2010/01/07/samsung-apps-tv-and-mobile-app-store-launched-115875-21948229/">www.mirror.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/mobile-applications-on-tvs_1153.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>BOLT mobile browser to include widgets</title>
		<link>http://www.pavingways.com/bolt-mobile-browser-to-include-widgets_1144.html</link>
		<comments>http://www.pavingways.com/bolt-mobile-browser-to-include-widgets_1144.html#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:52:29 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Browsers]]></category>

		<category><![CDATA[Mobile Widgets]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1144</guid>
		<description><![CDATA[Bitstream, the company behind the popular BOLT mobile browser, has announced that version 1.7 of its browser will have the ability to run Web applications - known as widgets.
BOLT already supports Ajax, Javascript and other web-based languages. But the widgets will be installed directly into the BOLT browser and thus will load and execute faster. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bitstream.com/">Bitstream</a>, the company behind the popular <strong><a href="http://boltbrowser.com/">BOLT mobile browser</a></strong>, has announced that version 1.7 of its browser will have the ability to run Web applications - known as <strong>widgets</strong>.</p>
<p>BOLT already supports Ajax, Javascript and other web-based languages. But the widgets will be installed directly into the BOLT browser and thus will load and execute faster. The BOLT widgets are written <strong>in standard <a href="http://www.w3.org/TR/widgets/">W3C code</a></strong>. Users can access their widgets from within the browser via a new widget menu.</p>
<p>“As many of the recent mobile and wireless trade shows have demonstrated, mobile applications are part of the mainstream mobile experience,” said Sampo Kaasila, vice president of research and development at Bitstream. “However, the vast majority of phones in use today are ‘feature phones’ not smartphones. Unfortunately for the users of these billions of feature phones, it isn’t easy to find, install and run mobile applications. By adding Web apps to BOLT, Bitstream is not only improving the usability of our mobile browser, we are also making it possible for literally billions of people to partake in the mobile apps revolution.”<span id="more-1144"></span></p>
<p>According to Bitstream, more than 3.4 million BOLT accounts have been created since last year, and the browser delivers over 2.8 million pages each day.</p>
<p>The new version of Bolt will be launched at the <a href="http://www.mobileworldcongress.com/index.htm">Mobile World Congress</a> on <strong>February 15, 2010</strong>, and there will be a small set of beta widgets available at launch.</p>
<p><strong>Sources:</strong><br />
<a href="http://news.softpedia.com/news/BOLT-Selected-Default-Browser-for-KC-Mobile-s-Handsets-131907.shtml">news.softpedia.com</a><br />
<a href="http://tech2.in.com/india/news/mobile-phones/bolt-mobile-browser-to-get-widgets/107622/0">tech2.in.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/bolt-mobile-browser-to-include-widgets_1144.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>A Happy New Year and Website</title>
		<link>http://www.pavingways.com/a-happy-new-year-and-website_1140.html</link>
		<comments>http://www.pavingways.com/a-happy-new-year-and-website_1140.html#comments</comments>
		<pubDate>Wed, 13 Jan 2010 21:32:22 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Mobile Web]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1140</guid>
		<description><![CDATA[We just wanted to take the opportunity of the beginning new year to wish all our readers all the best for this year and the new decade!
We are in the process of changing our website design and content. The new page will contain more information about what we have been doing lately and what we will be doing [...]]]></description>
			<content:encoded><![CDATA[<p>We just wanted to take the opportunity of the beginning new year to wish all our readers all the best for this year and the new decade!</p>
<p>We are in the process of changing our website design and content. The new page will contain more information about what we have been doing lately and what we will be doing soon - all in the area of games, <a href="http://www.pavingways.com/mobile-widget-wiki/">mobile widgets and app stores</a>.</p>
<p>Because of this there was not much happening here during the last few weeks, except maybe useless filler posts like this one. But it&#8217;s gonna be better soon, so please stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/a-happy-new-year-and-website_1140.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Technical Review for Apress Book</title>
		<link>http://www.pavingways.com/technical-review-for-apress-book_1137.html</link>
		<comments>http://www.pavingways.com/technical-review-for-apress-book_1137.html#comments</comments>
		<pubDate>Sat, 28 Nov 2009 16:53:33 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Mobile Web]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1137</guid>
		<description><![CDATA[I have been asked to do part of the technical review of a new book from Apress called &#8216;Beginning Smartphone Web Development&#8216; and was happy to help. 
The book is written by Gail Rahn Frederick and from what I have seen so far the book is going to become a great introduction to mobile web [...]]]></description>
			<content:encoded><![CDATA[<p><span>I have been asked to do part of the technical review of a new book from </span><a href="http://www.apress.com">Apress</a><span> called &#8216;</span><a href="http://www.apress.com/book/view/9781430226208">Beginning Smartphone Web Development</a><span>&#8216; and was happy to help. </span></p>
<p><span>The book is written by </span><a href="http://learnthemobileweb.com">Gail Rahn Frederick</a> and from what I have seen so far the book is going to become a great introduction to mobile web development. All the necessary fundamentals are well covered and explained with practical examples and there are some more advanced sections on using Ajax and device capability databases.</p>
<p>Anybody interested in the challenges and details of mobile web development can take away something from the book. Publication is due in December 2009, so make sure you put it on your <a href="http://www.amazon.com/Beginning-Smartphone-Web-Development-Applications/dp/143022620X/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1259427032&amp;sr=8-1">Amazon wishlist</a> now!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/technical-review-for-apress-book_1137.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Review Browsergames Forum 2009 in Frankfurt</title>
		<link>http://www.pavingways.com/review-browsergames-forum-2009-in-frankfurt_1107.html</link>
		<comments>http://www.pavingways.com/review-browsergames-forum-2009-in-frankfurt_1107.html#comments</comments>
		<pubDate>Tue, 10 Nov 2009 16:03:32 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Conferences/Events]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1107</guid>
		<description><![CDATA[Last week we attended the Browsergames Forum 2009 in Frankfurt. This forum/conference brought together people and companies from the browser based games area. Germany is a serious location for all browser games (BigPoint, Travian Games, Innogames &#8230;) so it wasn&#8217;t really surprising that 90% of all attendees were German as well, but we also met [...]]]></description>
			<content:encoded><![CDATA[<p>Last week we attended the <a href="http://bgf2009.de/">Browsergames Forum 2009</a> in Frankfurt. This forum/conference brought together people and companies from the browser based games area. Germany is a serious location for all browser games (<a href="http://de.bigpoint.com/">BigPoint</a>, <a href="http://traviangames.de/">Travian Games</a>, <a href="http://www.innogames.de/en">Innogames</a> &#8230;) so it wasn&#8217;t really surprising that 90% of all attendees were German as well, but we also met people from Bulgaria, Portugal and Israel.</p>
<p>Recently, we have been developing two mobile browser based games for UK clients (news about those soon here) and this conference was perfect for us to see what is going on in this market, what are the upcoming trends and how to make money in this area.</p>
<p>There were <a href="http://bgf2009.de/BGF-Programm-stand30102009.pdf">several talks</a>, with topics ranging from programing, monetizing, financing to marketing and legal topics and they answered most of our questions above. Unlike typical web startups it seemed to me that browser game companies do not struggle with finding their business model and earning money. They make (in many cases loads of) money, especially by selling items to users.</p>
<p>And options for these item sales are virtually unlimited. Patrick Streppel (CEO <a href="http://www.gamigo.de/">Gamigo Games AG</a>) talked about the possibilities. His company had replaced fantasy cars for real and licensed cars (such as BMW, Audi, &#8230;) in a game, because the users wanted that and it felt more natural to them and accordingly sales increased vastly. Another interesting story was that in the game you can buy golf clubs which can be used 100,000 times and then have to be replaced by a new one. In another game the users can buy an insurance for their sword in order to be protected against damage. &#8220;Buy one, get one free&#8221; campaigns or bundle sales are very popular too. There were also some companies offering monetisation models for free-to-play games, such as <a href="http://www.sponsorpay.com/de/en/home">SponsorPay</a> or <a href="http://www.fatfoogoo.com/">fatfoogoo</a>. With these players can basically get premium services or virtual goods/money in games by doing surveys or signing up for other services etc.<span id="more-1107"></span></p>
<p>Most of the game companies act international due to their international user base. For example the well-known <a href="http://www.pennergame.de/">Pennergame</a> (<a href="http://www.farbflut.de/">Farbflut Entertainment GmbH</a>) is available in five languages, has 3.5 mio registered users and 3 bn page impressions worldwide. Most of their revenue still comes from advertising and merchandising, but they also started selling items in the game now.</p>
<p>Other big trends in the browser game market are Facebook-based games and 3D-Graphics.</p>
<p>I really enjoyed the conference. The browser game market is really huge. Interestingly, no one was talking about the upcoming opportunities in the mobile web space, especially the app store topic wasn&#8217;t considered at all. I am pretty sure that we will also see a lot of growth in this area soon. And who knows, maybe we will be presenting something about the mobile browser game market at the next Browsergame Forum in 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/review-browsergames-forum-2009-in-frankfurt_1107.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Application and Widget Development Competitions</title>
		<link>http://www.pavingways.com/widget-development-competitions_1078.html</link>
		<comments>http://www.pavingways.com/widget-development-competitions_1078.html#comments</comments>
		<pubDate>Wed, 28 Oct 2009 00:22:13 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Widgets]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1078</guid>
		<description><![CDATA[As you can see in our Widget and App Store Wiki, a lot of phone manufacturers and operators have already joined the mobile applications battle or are planning their move in this direction. To promote their platforms and app stores and to attract new developers many of them have started competitions, usually with nice prizes [...]]]></description>
			<content:encoded><![CDATA[<p>As you can see in <a href="../mobile-widget-wiki/app-store-overview">our Widget and App Store Wiki</a>, a lot of phone manufacturers and operators have already joined the mobile applications battle or are planning their move in this direction. To promote their platforms and app stores and to attract new developers many of them have started <a href="http://www.pavingways.com/mobile-widget-wiki/widget-development-competitions">competitions</a>, usually with nice prizes to be won.</p>
<p>Have a look at the following currently ongoing competitions:</p>
<ol>
<li><a href="http://www.nn4d.com/site/global/market/lbs_challenge/p_lbs_home.jsp"><strong>NAVTEQ Global LBS Challenge</strong></a><br />
<strong>PRIZE:</strong><strong> global prize pool</strong><strong> currently at $8.2 million USD in cash and licenses</strong><br />
<strong> DEADLINE: November 6, 2009</strong> (EMEA region)</p>
<p>The NAVTEQ Global LBS Challenge is focused on driving the development and visibility of innovative location-based solutions (LBS) for wireless devices. From business applications to sports, travel and security, integrating the accuracy and richness of NAVTEQ digital map data facilitates the discovery of the next wave of LBS using dynamic positioning technology. Winners are chosen by a panel of distinguished judges in each of five regions (EMEA, India, South America, North America, APAC).</p>
<p>Registration for the LBS Challenge, EMEA Region has been extended to November 6, 2009.  A completed solution is not required at the time of  registration. The winners of the EMEA Region will be announced on February 14, 2010 prior to Mobile World Congress in Barcelona. The global prize pool for this year’s competition is currently at <strong>$8.2 million USD in cash and licenses</strong>.</p>
<p>Read more: <a href="http://www.nn4d.com/site/global/market/lbs_challenge/p_lbs_home.jsp">NAVTEQ Global LBS Challenge<span id="more-1078"></span></a></li>
<li><a href="http://www.callingallinnovators.com/africa/default.aspx"><strong>Calling All Innovators Africa 2009 competition:</strong></a><br />
<strong>PRIZE:</strong><strong> </strong><strong>worth more than $125,000</strong><br />
<strong> DEADLINE: November 15, 2009</strong></p>
<p>Forum Nokia invites developers to publish their mobile applications to Ovi Store that will enhance the use of mobile devices in Africa in real-world scenarios. Developers can submit applications, widgets, or content of local African interest. This includes any content within Ovi Store content categories (Applications &amp; Widgets, Video, Personalization, Games, Audio, Flash &amp; Active idle widgets, Location based applications, Podcasts).</p>
<p>Submissions for the contest will be accepted until 15 November 2009, and the winners will be announced in 10 December 2009.<strong> Grand Prize winner</strong> will receive $85,000 USD in cash; premium placement in Ovi Store; and paid travel to demo the winning application at a Nokia-specified event. <strong>2nd – 5th Place</strong> get $10,000 USD each in cash; premium placement in Ovi Store.</p>
<p>Read more: <a href="http://www.callingallinnovators.com/africa/default.aspx">Forum Nokia Africa</a></li>
<li><a href="http://www.callingallinnovators.com/france/default.aspx"><strong>Ovi Store Calling All Innovators France:</strong></a><br />
<strong>DEADLINE: November 22, 2009</strong></p>
<p><strong></strong>Forum Nokia invites developers to publish their mobile applications and services to Ovi Store which is relevant to the 15 million users of Nokia devices in France. Developers can submit their applications in the following categories: social location; business and productivity; communications; games; just for fun.</p>
<p>Applications will be accepted until November 22, 2009. The winners will be invited to the conference <a href="http://www.leweb.net/">LeWeb 2009</a> held in Paris on 9 and December 10, 2009 and will demonstrate their winning applications at the event. The <strong>first prize winner of all categories</strong> will receive 15 000 EUR in cash, opportunity to see the application preloaded on future Nokia mobile sold in France, paid travel to attend the Nokia Developer event, a Nokia N900 and one-year membership in Forum Nokia Launchpad.</p>
<p>Read more: <a href="http://www.callingallinnovators.com/france/default.aspx">Forum Nokia France</a></li>
<li><a href="http://www.callingallinnovators.com/uk/default.aspx"><strong>Calling All Innovators UK Contest:</strong></a><strong><br />
DEADLINE: November 30, 2009</strong></p>
<p><strong></strong>Forum Nokia invites developers to publish their mobile applications to Ovi Store that will enhance the use of Nokia mobile devices by consumers in the UK. Developers can submit their applications in the following categories: social location; business and productivity; communications and social networking; games; just for fun.</p>
<p>Submissions for the contest will be accepted until 30 November 2009. Winners will be announced by 31 December 2009 and will receive cash and other valuable prizes. <strong>One grand prize winner</strong> will be selected among the submissions in all contest categories and will receive 20,000 GBP in cash, a trip paid to attend the Nokia Developer event in spring 2010, a promotional package for Ovi Store and one-year membership in Forum Nokia Launchpad.</p>
<p>Read more: <a href="http://www.callingallinnovators.com/uk/default.aspx">Forum Nokia UK</a></li>
<li><strong><a href="http://www.callingallinnovators.com/lta/">Forum Nokia Calling All Innovators - Publish to Ovi:</a> </strong>(Latin America)<br />
<strong>PRIZE: worth $50,000 (USD)<br />
DEADLINE: January 15, 2010</strong></p>
<p>Forum Nokia invites developers to publish their mobile application to Ovi Store in the following categories: Entertainment, News and Information; Games; Free Application for any category of Ovi Store. There will be a winner in each of the three categories and two second places in each category.</p>
<p>The<strong> two second places in each category</strong> will receive a new smartphone from Nokia and a free membership in Forum Nokia Launchpad for 1 year. The <strong>winner in each category</strong> will receive $ 5,000 (local currency), a new smartphone from Nokia and a free membership in Forum Nokia Launchpad for 1 year. From the winners of the three categories, also will choose a <strong>regional winner</strong>. The regional winner will earn an additional $ 15,000, a trip paid to attend the Nokia Developer Summit in California and a promotional package from 5,000 in value (determined by Nokia) of your mobile application in Ovi Store. All submissions to the contest must be translated into Spanish. Deadline is January 15, 2010. Winning applications will be determined based on the quality and consumer appeal of the applications determined by the judges of Nokia.<br />
<strong><br />
Extra opportunity:</strong> If your application has been published in Ovi Store <strong>for the Nokia 5130</strong> in one of three categories, you are eligible for an additional prize of $ 5,000!</p>
<p>Read more: <a href="http://www.callingallinnovators.com/lta/">Forum Nokia LTA</a></li>
<li><strong><a href="http://widget.developer.vodafone.com/appstar/">Vodafone 360 App Star Competition:</a><br />
TOP PRIZE: € 100,000<br />
DEADLINE: March 31, 2010</strong></p>
<p>Vodafone has launched the Vodafone 360 App Star Competition to find the <strong>most innovative and useful mobile widgets</strong> with a 1 million EU prize fund awarded and evaluated on the user experience, value to the customer and innovation.</p>
<p>The <strong>1st phase</strong> of the competition runs <strong>until March 31st 2010</strong>, so you have until then to submit your entry. Three judges from each of the local Vodafone countries will judge the submitted entries and pick three winners. The three winners will receive (in reverse order), <strong>€10,000</strong>, <strong>€15,000</strong> and <strong>€25,000</strong>. There will be 24 winners, which will be announced on April 15th 2010.</p>
<p>In the <strong>2nd phase</strong> the winner of each country (8 in total) will then be opened up to public voting, where anyone can vote for the widget of their choice <strong>until May 14th 2010</strong>. The widget with the second highest number of votes wins an <strong>additional €25,000</strong>, but the widget with most votes will then win <strong>another €75,000</strong>. The winners will be announced during May 2010.</p>
<p>Read more: <a href="http://widget.developer.vodafone.com/appstar">Vodafone 360 App Star Competition</a>, <a href="http://www.siliconrepublic.com/news/article/13937/new-media/vodafone-reveals-global-1m-competition-for-best-mobile-app">siliconrepublic.com</a></li>
</ol>
<p>Please <a href="http://www.pavingways.com/contact">let us know</a> if you know of other mobile application or widget competitions and make sure you <a href="http://www.pavingways.com/mobile-widget-wiki/widget-development-competitions">check out our Wiki</a> for the latest updates! &#8230; Oh and please let us know if you are one of the lucky winners and we will happily blog about this :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/widget-development-competitions_1078.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>RIM, LG, Sharp &#038; Samsung Join JIL for Global Widget Platform</title>
		<link>http://www.pavingways.com/rim-lg-sharp-samsung-join-jil-for-global-widget-platform_1065.html</link>
		<comments>http://www.pavingways.com/rim-lg-sharp-samsung-join-jil-for-global-widget-platform_1065.html#comments</comments>
		<pubDate>Sat, 24 Oct 2009 19:08:44 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Widgets]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1065</guid>
		<description><![CDATA[Handset makers Research in Motion (RIM), LG Electronics, Sharp and Samsung Electronics have joined the Joint Innovation Lab (JIL) and will support JIL widget specification in future mobile handsets from Q1 2010.
“The decision of LG, RIM, Samsung and Sharp to incorporate the JIL widget specifications in their future product roadmap is proof of the tremendous [...]]]></description>
			<content:encoded><![CDATA[<p>Handset makers <a href="http://www.rim.com/">Research in Motion</a> (RIM), <a href="http://www.lg.com/">LG Electronics</a>, <a href="http://www.sharpusa.com/">Sharp</a> and <a href="http://www.samsung.com/">Samsung Electronics</a> have joined the<a href="http://www.jil.org/"> Joint Innovation Lab (JIL)</a> and will support JIL widget specification in future mobile handsets from Q1 2010.</p>
<p>“The decision of LG, RIM, Samsung and Sharp to incorporate the JIL widget specifications in their future product roadmap is proof of the tremendous potential that JIL offers both to developers and customers,” said Peters Suh, JIL CEO. “All four companies are innovation leaders and this is another strong affirmation of both JIL strategy and its robust technical specifications.” (<a href="http://news.vzw.com/news/2009/10/pr2009-10-20o.html">Verizon Wireless</a>)<a href="http://news.vzw.com/news/2009/10/pr2009-10-20o.html"><br />
</a></p>
<p>Other members of the JIL include <a href="http://www.verizonwireless.com/">Verizon Wireless</a>, <a href="http://www.vodafone.com/">Vodafone</a>, <a href="http://www.chinamobile.com/en/">China Mobile</a> and <a href="http://mb.softbank.jp/en/">Softbank</a> (Japan) who are claiming to be able to reach a combined user base of more than 1 billion around the world (North America, Europe, Asia and Africa).<span id="more-1065"></span></p>
<p>The Joint Innovation Lab (JIL) is mostly focused on creating <strong>a standardized global platform</strong> for developers to encourage the creation of a wide range of <strong>mobile widgets</strong>. The Platform is supposed to enable developers to access handset and network functionalities such as the address book, camera, location information and billing in a secure environment. JIL widgets will run on a variety of smartphones as well as mid- and low-cost handsets across several operating systems and are distributed through JIL operators’ applications stores. It also appears that a unified application store will come, but this could also be a move by JIL towards providing a brandable app store platform for participating members.</p>
<p>For us as developers and promoters of mobile widgets this is good news for several reasons: <strong>fragmentation</strong> will be <strong>less</strong> of an issue (it will still be a major concern), we have the outlook for a <strong>global billing</strong> and <strong>distribution</strong> system and what&#8217;s not mentioned above but still important: JIL widgets are based in large parts on the <strong>W3C and BONDI specs</strong>.</p>
<p>An interesting fact is that companies such as Samsung now have to dip their toes in several different widget waters, their own widget platform called <a href="http://www.samsung-f480.com/">TouchWiz</a>, are bringing out <a href="http://samsungmobileusa.com/Behold2PL.aspx?INT=us_home_subbanners_pos4_1007_behold2">Android handsets</a> and produce the <a href="http://info.vodafone360.com/en/phones/360H1">H1 and M1 for Vodafone 360</a> (which represents their JIL engangement), not to mention their Windows Mobile devices. Well, Samsung is a hardware manufacturer and they have to support all these different platforms I guess.</p>
<p>Hopefully the goals of JIL will be implemented as announced and we can start distributing JIL widget-based applications globally soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/rim-lg-sharp-samsung-join-jil-for-global-widget-platform_1065.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Mobile Applications hit Cars</title>
		<link>http://www.pavingways.com/mobile-applications-hit-cars_1031.html</link>
		<comments>http://www.pavingways.com/mobile-applications-hit-cars_1031.html#comments</comments>
		<pubDate>Thu, 22 Oct 2009 17:39:36 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Mobile Applications]]></category>

		<category><![CDATA[Mobile Trends]]></category>

		<category><![CDATA[Mobile Widgets]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=1031</guid>
		<description><![CDATA[At the IAA in Frankfurt (Frankfurt Motor Show) in September 2009 BMW, Nokia and Parrot SA unveiled plans for bringing smart phone applications to cars.
&#8220;For software developers, this opens a whole new domain to sell their apps. For car makers, apps provide new ways to deliver infotainment and telematics services to customers. For motorists, apps [...]]]></description>
			<content:encoded><![CDATA[<p>At the <a href="http://www.iaa.de/">IAA in Frankfurt</a> (Frankfurt Motor Show) in September 2009 <a href="http://www.bmw.com/com/en/index.html">BMW</a>, <a href="http://www.nokia.com/">Nokia</a> and <a href="http://www.parrot.com/usa/">Parrot SA</a> unveiled plans for bringing smart phone applications to cars.</p>
<p>&#8220;For software developers, this opens a whole new domain to sell their apps. For car makers, apps provide new ways to deliver infotainment and telematics services to customers. For motorists, apps allow them to enjoy their infotainment systems to the fullest, while paying only for the applications they want, thus saving them money. With apps so critical to the automotive market, companies are pushing approaches that benefit their specific goals. While the solutions shown at IAA were only concepts, they clearly reflect what will soon be on the market.&#8221; said Kevin Hamlin, analyst for automotive electronics at <a href="http://www.isuppli.com/Pages/home.aspx">iSuppli Corp</a>.</p>
<p>Sounds good? Yes. Where&#8217;s the catch? Doing it right!</p>
<p><span id="more-1031"></span></p>
<p><strong>BMW and its Concept BMW Application Store:</strong></p>
<p>BMW is the first car maker who is opening its own app store: the <a href="http://www.lifepr.de/pressemeldungen/bmw-group/boxid-121889.html"><strong>Concept BMW Application Store</strong></a>. The store offers several different apps and users can download them to their iDrive either directly in their car or via home PC (and then transfer the apps to the car system). The selection of apps ranges from the obvious Facebook, Xing and Twitter to podcasts, web radio, Geowiki, multimedia travel guides as well as various games. I am not sure how big the applications offering is in it&#8217;s entirety, but it is a nice step in customizing your car to your needs. Another feature - maybe more useful than the rest and especially for business customers - is the ability to transfer contact data (addresses or phone numbers) to the navigation system or mobile phone connected to the car system.</p>
<p style="text-align: center;"><a href="http://www.bmwblog.com/2009/09/14/concept-bmw-application-store-to-be-introduced-at-frankfurt/"><img class="size-full wp-image-1042 aligncenter" title="infotaiment-1-655x245" src="http://www.pavingways.com/wp-content/uploads/infotaiment-1-655x245.jpg" alt="" width="500" height="187" /></a></p>
<p>Locations is also an important part: the apps are able to pull vehicle-related information. BMW has shown apps that draw on information from the vehicle navigation system and even plans to link to other data such as acceleration or braking data. The car&#8217;s position is also taken from the navigation system and, if the system is actively guiding the car to a destination, information about the destination time and location can be used.</p>
<p><strong>Nokia, Navteq and Magneti Marelli</strong><strong> developing smart car technology:</strong></p>
<p>Nokia, who bought map provider NAVTEQ back in 2007 for around 8 billion (yes, USD), is more looking into <strong>mobile device integration with the vehicle</strong> rather than introducing apps. During IAA in Frankfurt, Nokia, NAVTEQ, and <a href="http://www.magnetimarelli.com/index.htm">Magneti Marelli</a> (automotive systems and components specialist) demonstrated a technology which seamlessly integrates smart phones into an in-vehicle infotainment system. Once connected, smart phone features, services and applications can be unlocked and driven through the in-car screens and audio systems embedded in the car. Users would be familiar with the user interface as it would be the same one they see on their smart phones. Through this connectivity, key data such as fuel levels (where is the next gas station), engine status, eco-friendly driving as well as location-based services (coupon for a coffee at a nearby gas station) can be extracted. ADAS (Advanced Driver Assistance System) -based safety features could also be included. For example to warn drivers to slow down for a sharp bend ahead.</p>
<p>&#8220;We are happy to be part of this new innovation and looking forward to the new opportunities this technology can bring,&#8221; said Vesa Luiro, head of navigation development, Nokia. &#8220;The infotainment system of a modern car is a natural extension for the capabilities of smartphones. Not only will it simplify the use of turn-by-turn voice guidance from <a href="http://maps.ovi.com/">Ovi Maps</a>, but also provide a new and easy way of accessing other content on the smartphone, such as music and delivering automotive specific widgets from the <a href="http://store.ovi.com/">OVI Store</a>.&#8221;</p>
<p>Connection from the mobile device to the infotainment system is made either via Bluetooth or USB cable. This technology known as &#8220;<strong>Virtual Networking Computer layer</strong>&#8221; is in alpha phase and was developed in collaboration with Nokia Research Center, Palo Alto.</p>
<p><strong>Parrot goes open source:</strong></p>
<p><a href="http://www.parrot.com">Parrot</a>, a wireless equipment supplier, unveiled an Android-based device (a head unit) that offers “automotive implementation of all smartphone features.” Great news for Android developers, who do not have to develop on a separate platform for cars. And this also means hundreds of apps are already available.</p>
<p>The head unit itself includes hands-free Bluetooth, A2DP audio streaming, speaker-independent voice recognition, multimedia connectivity, smart track browsing and playlist management, 3G+ Web browsing and 3.0 Wi-Fi and Bluetooth. Also check out Parrot&#8217;s <a href="http://www.facebook.com/pages/Parrot/49623718343">Facebook</a> page and <a href="http://twitter.com/Parrot">Twitter Feed</a>.</p>
<p><strong>App store battle has started - who will win?<br />
</strong></p>
<p>As you can see in <a href="http://www.pavingways.com/mobile-widget-wiki/app-store-overview">our Widget and App Store Wiki</a>, a lot of phone manufacturers and operators have already joined the mobile applications battle or are planning their move in this direction. It becomes clear that many other industries such as the <a href="http://www.pavingways.com/review-frankfurt-book-fair-opportunities-for-publishers-retailers_993.html">book publishers</a> or car manufacturers are trying to get a piece of this cake. I totally agree with <a href="http://gigaom.com/2009/10/12/automotive-market-to-fuel-apps-and-app-stores/">gigaom</a> that the key to success in this app store battle will be <strong>interoperability</strong>. That&#8217;s why I think Nokia and Parrot have a the better approach here and BMW&#8217;s is a bit short-sighted with their proprietary and apparently closed system.</p>
<p>Users want a wide and ubiquitous selection of apps, preferably not bound to a special platform or device. There is more than enough fragmentation developers have to cope with in this area - screen sizes, device capabilities and on goes the list. <strong>If platform vendors want to attract developers to develop applications for their systems and devices they are best off supporting standards, preferably open ones and they need to take care of them by offering development tools and support in selling the applications in their app stores.</strong></p>
<p>We will soon see which car manufacturers do this right and which model will prevail.</p>
<p><strong>Sources:</strong><a href="http://www.bmwblog.com/2009/09/14/concept-bmw-application-store-to-be-introduced-at-frankfurt/"><br />
cellular-news.com<br />
bmwBlog.com</a><a href="http://www.mobile-ent.biz/news/34677/BMW-unveils-in-car-app-store"><br />
mobile-ent.biz</a><br />
<a href="http://www.eetasia.com/ART_8800586838_499488_NT_00175140.HTM">eetasia.com</a><br />
<a href="http://www.reuters.com/article/pressRelease/idUS108979+15-Sep-2009+PRN20090915">reuters.com</a><br />
<a href="http://gigaom.com/2009/10/12/automotive-market-to-fuel-apps-and-app-stores/">gigaom.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/mobile-applications-hit-cars_1031.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Review Frankfurt Book Fair: Opportunities for Publishers &#038; Retailers</title>
		<link>http://www.pavingways.com/review-frankfurt-book-fair-opportunities-for-publishers-retailers_993.html</link>
		<comments>http://www.pavingways.com/review-frankfurt-book-fair-opportunities-for-publishers-retailers_993.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 12:35:36 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Conferences/Events]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=993</guid>
		<description><![CDATA[As mentioned earlier, I was invited for a panel discussion at the Frankfurt Book Fair on Wednesday. The other panelists were Suzanne Koranyi-Esser (Editorial  Director of Reader’s Digest Germany,  Switzerland, Austria) and Patrik  Jaros (star chef, cookbook  author, CEO of FOODLOOK Studio GmbH). Siobhan O`Leary (literary  agent, translator and writer) [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1014" title="Frankfurt Book Fair 2009" src="http://farm3.static.flickr.com/2538/4014163118_87a961c155.jpg" alt="" width="300" height="200" /><a href="http://www.pavingways.com/panel-discussion-at-frankfurt-book-fair-2009_957.html">As mentioned earlier</a>, I was invited for a <a href="http://www.gourmet-gallery.de/en/encookingdigital.html">panel discussion</a> at the <a href="http://www.buchmesse.de/en/">Frankfurt Book Fair</a> on Wednesday. The other panelists were Suzanne Koranyi-Esser (Editorial  Director of <a href="http://www.rd.com/international/shared/?countryid=de">Reader’s Digest</a> Germany,  Switzerland, Austria) and <span class="Stil6">Patrik  Jaros (</span><span class="Stil6">star chef, cookbook  author, CEO of </span>FOODLOOK Studio GmbH). Siobhan O`Leary (literary  agent, translator and writer) was moderating this panel. Good job everyone!</p>
<p>The panel discussion was quite interesting and some publishers are already playing around with mobile applications. Patrik Jaros mentioned that he released a couple of <a href="http://www.pitaya-media.com/">cooking applications</a> for different mobile platforms (iPhone, Blackberry, Android). Reader’s Digest has also an iPhone app available for download called &#8220;allrecipes.com DinnerSpinner&#8221; and it is related to <a href="http://allrecipes.de">RD&#8217;s online community of hobby cooks</a> (German version). The discussion was not about mobile exclusively, but digital in general. Questions ranged from &#8220;Should the content in an application be released for free or not?&#8221;, &#8220;Is the classic cookbook dead?&#8221; to &#8220;What kind of strategy should publishers and retailers follow in the digital/mobile space?&#8221;.<span id="more-993"></span></p>
<p>In the panel we agreed that the classic (cook)book won&#8217;t die off anytime soon and digital publishing will be an opportunity as well as a challenge, especially when it comes to rights management for content and images. Publishers have to work on a strategy that combines both areas. My opinion is that convergence amongst the classic and digital world has a lot of momentum and will be very important in any digital and especially mobile strategy for publishers. For example when someone buys a classic cookbook there must be at least a hint or link to the digital version of it. QR- or Barcodes containing recipes on ingredients you buy are another example.</p>
<p>A big challenge is that expectations of customers are different in the digital/mobile space. When customers buy a printed book, it is a final version and publishers mostly have no more connection to the product and the user. But when users download an application or buy a digital book, they expect updates and new content after a certain time and they might also want to be able to give feedback directly and tie content into their favorite social network.</p>
<p>Our recommended mobile strategy for publishers at the moment is to play around with the possibilities in the digital and mobile space and get involved with what is out there as soon as possible to gain insights and feedback and to define goals. This does not only mean developing applications for the iPhone, but all application stores and devices (widgets to the rescue!). At the end of the day the outcome must be one strategy which integrates classic books, eBooks and mobile applications. And of course it is important not to see customers as one-time buyers anymore, but as a community which publishers have to maintain and take care of.</p>
<p>It was a nice panel discussion. Mobile cookery publishing is still in its infancy and there are lots of possibilities in this space. It is well worth looking at this area for publishers as well as for media and mobile agencies and now is a good time to at least tipping your toes into digital and especially mobile waters.</p>
<p><img class="alignnone size-full wp-image-1016" title="Frankfurt Book Fair 2009" src="http://farm3.static.flickr.com/2515/4013397917_6c24244944.jpg" alt="" width="300" height="200" /> <img class="alignnone size-full wp-image-1017" title="Frankfurt Book Fair 2009 Panel Discussion" src="http://farm3.static.flickr.com/2533/4014163714_afbfda7b43.jpg" alt="" width="300" height="200" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/review-frankfurt-book-fair-opportunities-for-publishers-retailers_993.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Webmontag Frankfurt</title>
		<link>http://www.pavingways.com/webmontag-frankfurt_980.html</link>
		<comments>http://www.pavingways.com/webmontag-frankfurt_980.html#comments</comments>
		<pubDate>Tue, 13 Oct 2009 14:50:08 +0000</pubDate>
		<dc:creator>Diana</dc:creator>
		
		<category><![CDATA[Conferences/Events]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=980</guid>
		<description><![CDATA[Yesterday we went to the Webmontag in Frankfurt. It took off at 7 pm and was pretty well attended (&#62;100 people). First there were some presentations about Barcamps in general, Conceptual Designers, PR &#38; social media, Wikis for agencys and companies and why todolists fail. I really liked the twitter wall even though the filter [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday we went to the <a href="http://www.webmontag.de/location/frankfurt/2009-10-12">Webmontag in Frankfurt</a>. It took off at 7 pm and was pretty well attended (&gt;100 people). First there were some presentations about <a href="https://www.xing.com/profile/Mario_Hachemer">Barcamps in general</a>, <a href="http://www.andreas-demmer.de/2009/10/13/gestern-war-web-montag-in-frankfurt/">Conceptual Designers</a>, <a href="http://www.slideshare.net/PRDoktor/verachtet-mir-die-klassik-nicht-2205673">PR &amp; social media</a>, <a href="http://prezi.com/tghs4c98htj0/">Wikis for agencys and companies</a> and <a href="http://tautoko.info/">why todolists fail</a>. I really liked the twitter wall even though the filter only worked for the hashtag  #Webmontag and not for #wmfra.</p>
<p>1.5 hours later the networking part started. Nice people, nice talks. Here are some photos from yesterday @ <a href="http://www.flickr.com/photos/dc7590/tags/webmontag12102009/show/">flickr.com</a>.</p>
<p>The next Webmontag Frankfurt is scheduled for <a href="http://www.webmontag.de/location/frankfurt/index">04. December</a>. One talk will be about Google Wave. Btw many thanks to <a href="http://www.webmontag.de/person/darren_cooper">Darren</a> &amp; the rest of the orga team for organizing this! See you there!</p>
<p>PS: There are some more interesting events coming up:</p>
<ol>
<li><a href="http://www.droidcon.de/">droidcon</a> 3./4. Nov. (Berlin, Germany)</li>
<li><a href="http://www.barcampmainz.de/">BarCamp Mainz</a> 28./29. Nov. (Mainz, Germany)</li>
<li><a href="http://sites.google.com/site/gtugfra/home">GTUGFRA </a><span><span style="font-family: verdana,sans-serif;"><a href="http://sites.google.com/site/gtugfra/home">Google Technology UserGroup Frankfurt</a> 17. Dec. (Frankfurt/Main, </span></span> Germany)</li>
</ol>
<div>Looking forward to the next Webmontag!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/webmontag-frankfurt_980.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Panel Discussion at Frankfurt Book Fair 2009</title>
		<link>http://www.pavingways.com/panel-discussion-at-frankfurt-book-fair-2009_957.html</link>
		<comments>http://www.pavingways.com/panel-discussion-at-frankfurt-book-fair-2009_957.html#comments</comments>
		<pubDate>Fri, 09 Oct 2009 05:00:17 +0000</pubDate>
		<dc:creator>Rocco</dc:creator>
		
		<category><![CDATA[Conferences/Events]]></category>

		<category><![CDATA[Mobile Trends]]></category>

		<guid isPermaLink="false">http://www.pavingways.com/?p=957</guid>
		<description><![CDATA[I have been invited by the organizers of the Frankfurt Book Fair for a panel discussion about digital and mobile solutions in the field of cooking and publishing.
For the first time, the Frankfurt Book Fair is offering over 400 qm exclusively to the world of food, wine and all things epicurean. The Gourmet Gallery (in [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Frankfurt Book Fair 2009" href="http://www.buchmesse.de/en/"><img class="alignright" title="Frankfurt Book Fair 2009" src="http://www.buchmesse.de/img/startnavi_fbm2009_en.gif" alt="" width="270" height="270" /></a>I have been invited by the organizers of the <a href="http://www.buchmesse.de/en/">Frankfurt Book Fair</a> for a panel discussion about digital and mobile solutions in the field of cooking and publishing.</p>
<p>For the first time, the Frankfurt Book Fair is offering over 400 qm exclusively to the world of food, wine and all things epicurean. The <a href="http://www.gourmet-gallery.de/en/">Gourmet Gallery</a> (in Hall 5.0), one of the highlights at the book fair, features a show kitchen for live demonstrations by prominent chefs as well as talks, discussions, interviews etc. about everything cooking- and gourmet-related.</p>
<p>The topic of the panel discussion that I am participating in is &#8220;<a href="http://www.gourmet-gallery.de/en/encookingdigital.html"><strong>Cooking digital, digital Cooking: digital innovations and initiatives</strong></a>&#8220;. It is a B2B talk where we want to discuss examples for new ways for cookery books, trends, innovations and business models for chefs or publishing representatives. We will also talk about electronic culinary schools and getting recipes on your mobile.</p>
<p>Insights from the huge amount of mobile application stores and the emerging mobile widgets market will be things I can contribute, and findings from our research on these topics will come in handy, so I hope. In case you haven&#8217;t seen our wiki yet, it&#8217;s the place where we collect all <a title="Mobile Widget Engine &amp; App Store Wiki" href="http://www.pavingways.com/mobile-widget-wiki/">available information about app stores and widget</a> engines - our main area of business meanwhile.</p>
<p>It&#8217;s my first time at the Frankfurt Book Fair and I am really looking forward to this interesting panel. Many thanks to <a href="http://www.mobile-zeitgeist.com/">Heike Scholz</a> <a href="http://twitter.com/MobileZeitgeist">@MobileZeitgeist</a> for getting me in touch!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pavingways.com/panel-discussion-at-frankfurt-book-fair-2009_957.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
