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

<channel>
	<title>Mehmet Ali Ertürk &#187; iPhone</title>
	<atom:link href="http://mehmetalierturk.com/tag/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://mehmetalierturk.com</link>
	<description>Innovation is the ability to see change as an opportunity, not a threat</description>
	<lastBuildDate>Wed, 18 Jan 2012 14:28:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Making Rounded UIView&#8217; on iPhone</title>
		<link>http://mehmetalierturk.com/2012/01/08/making-rounded-uiview-iphone/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=making-rounded-uiview-iphone</link>
		<comments>http://mehmetalierturk.com/2012/01/08/making-rounded-uiview-iphone/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 15:17:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Quartz]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1269</guid>
		<description><![CDATA[I have started developing (mainly) iPhone apps late 2009 and I feel like I have some experience on iOS platform that I can share. I won&#8217;t be doing tutorial serias but just some tips and tricks. Let&#8217;s start with some &#8230; <a href="http://mehmetalierturk.com/2012/01/08/making-rounded-uiview-iphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have started developing (mainly) iPhone apps late 2009 and I feel like I have some experience on iOS platform that I can share. I won&#8217;t be doing tutorial serias but just some tips and tricks.</p>
<p>Let&#8217;s start with some ui tips, there are  2  ways to make rounded views in iPhone. One is using layers which is inefficient way, second is using quartz in drawRect.</p>
<p>Using layers is really simple;</p>
<p><code><br />
YourView *vw = [[YourView alloc] initWithFrame:CGRectMake(20, 20, 80, 80)];<br />
vw.layer.cornerRadius = 16;<br />
vw.layer.masksToBounds = YES;<br />
</code></p>
<p>simple. The right way is to handle in drawRect;<br />
<code><br />
 UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(16.0, 16.0)]; //Add a bezier path<br />
    [path addClip]; // and clip<br />
</code></p>
<p>Both two will same view.</p>
<p><a href="http://mehmetalierturk.com/wordpress/wp-content/uploads/2012/01/Screen-shot-2012-01-08-at-5.14.43-PM.png"><img src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2012/01/Screen-shot-2012-01-08-at-5.14.43-PM-300x156.png" alt="" title="Screen shot 2012-01-08 at 5.14.43 PM" width="300" height="156" class="aligncenter size-medium wp-image-1273" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2012/01/08/making-rounded-uiview-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4S Camera Test 2</title>
		<link>http://mehmetalierturk.com/2011/12/10/iphone-4s-camera-test-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iphone-4s-camera-test-2</link>
		<comments>http://mehmetalierturk.com/2011/12/10/iphone-4s-camera-test-2/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 16:41:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Camera]]></category>
		<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1237</guid>
		<description><![CDATA[Here some photos taken by iPhone 4S.]]></description>
			<content:encoded><![CDATA[<p>Here some photos taken by iPhone 4S. 
<a href='http://mehmetalierturk.com/2011/12/10/iphone-4s-camera-test-2/img_0237/' title='IMG_0237'><img width="150" height="150" src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/IMG_0237-150x150.jpg" class="attachment-thumbnail" alt="IMG_0237" title="IMG_0237" /></a>
<a href='http://mehmetalierturk.com/2011/12/10/iphone-4s-camera-test-2/img_0098/' title='IMG_0098'><img width="150" height="150" src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/IMG_0098-150x150.jpg" class="attachment-thumbnail" alt="IMG_0098" title="IMG_0098" /></a>
<a href='http://mehmetalierturk.com/2011/12/10/iphone-4s-camera-test-2/img_0134/' title='IMG_0134'><img width="150" height="150" src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/IMG_0134-150x150.jpg" class="attachment-thumbnail" alt="IMG_0134" title="IMG_0134" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2011/12/10/iphone-4s-camera-test-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About iPhone 4S Sim Failure &amp; Batter Usage</title>
		<link>http://mehmetalierturk.com/2011/12/08/iphone-4s-sim-failure-batter-usage/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iphone-4s-sim-failure-batter-usage</link>
		<comments>http://mehmetalierturk.com/2011/12/08/iphone-4s-sim-failure-batter-usage/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 14:55:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Battery]]></category>
		<category><![CDATA[Location]]></category>
		<category><![CDATA[SIM]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1223</guid>
		<description><![CDATA[There are hundreds of posts &#38; thousands of page views about iPhone 4S Batter Life at Apple Support Forums. A few days, I&#8217;ve faced same problems a few days like I had no sim and sim failure errors, network losses &#8230; <a href="http://mehmetalierturk.com/2011/12/08/iphone-4s-sim-failure-batter-usage/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are hundreds of posts &amp; thousands of page views about iPhone 4S Batter Life at Apple Support Forums. A few days, I&#8217;ve faced same problems a few days like I had no sim and sim failure errors, network losses and a few hours with full charge ! It seems problem is related directly with Apple but still there are solutions, at least two things worked for me;</p>
<p>1 &#8211; Changing SIM card with new one ( currently 64Kb micro sim ) solved network loss and sim failure errors.<br />
2 &#8211; Turning off a few location based services;</p>
<ul>
<li>Settings -&gt; Location Services On -&gt; Siri Off</li>
<li>Settings -&gt; Location Services -&gt; System Services -&gt; Cell Network Search &amp; Compass Calibration is On and everything else Off.</li>
</ul>
<p>The result is surprising, my iphone batter is 70 % with 1 day standby and 1 hour usage. </p>
<p><a href="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/photo.png"><img class="aligncenter size-medium wp-image-1224" title="iPhone 4S" src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/photo-200x300.png" alt="" width="200" height="300" /></a></p>
<p><strong>Update</strong></p>
<p>You can still have 2 days standby with a few hours usage. </p>
<p><a href="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/photo2.png"><img src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/photo2-200x300.png" alt="" title="photo" width="200" height="300" class="aligncenter size-medium wp-image-1256" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2011/12/08/iphone-4s-sim-failure-batter-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4S Camera Test 1</title>
		<link>http://mehmetalierturk.com/2011/12/06/iphone-4s-camera-test-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iphone-4s-camera-test-1</link>
		<comments>http://mehmetalierturk.com/2011/12/06/iphone-4s-camera-test-1/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 16:01:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1215</guid>
		<description><![CDATA[New iPhone&#8217;s camera is much better than expected, still I&#8217;m playing with camera. So, Its too early to evaluate and compare with other devices. What I want is to share two photos taken through this device.]]></description>
			<content:encoded><![CDATA[<p>New iPhone&#8217;s camera is much better than expected, still I&#8217;m playing with camera. So, Its too early to evaluate and compare with other devices. What I want is to share two photos taken through this device.</p>

<a href='http://mehmetalierturk.com/2011/12/06/iphone-4s-camera-test-1/photo-5/' title='photo'><img width="150" height="150" src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/photo3-150x150.jpg" class="attachment-thumbnail" alt="photo" title="photo" /></a>
<a href='http://mehmetalierturk.com/2011/12/06/iphone-4s-camera-test-1/photo2/' title='photo2'><img width="150" height="150" src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/photo21-150x150.jpg" class="attachment-thumbnail" alt="photo2" title="photo2" /></a>

]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2011/12/06/iphone-4s-camera-test-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally iPhone 4S is Here</title>
		<link>http://mehmetalierturk.com/2011/12/02/finally-iphone-4s/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=finally-iphone-4s</link>
		<comments>http://mehmetalierturk.com/2011/12/02/finally-iphone-4s/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 18:16:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1207</guid>
		<description><![CDATA[Siri is amazing &#8230;.]]></description>
			<content:encoded><![CDATA[<p>Siri is amazing &#8230;.<br />
<a href="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/iphone4s.jpg"><img class="aligncenter size-full wp-image-1211" title="iphone4s" src="http://mehmetalierturk.com/wordpress/wp-content/uploads/2011/12/iphone4s.jpg" alt="" width="500" height="396" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2011/12/02/finally-iphone-4s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Istanbul is Ready For Sale on the App Store</title>
		<link>http://mehmetalierturk.com/2010/04/16/istanbul-is-ready-for-sale-on-the-app-store/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=istanbul-is-ready-for-sale-on-the-app-store</link>
		<comments>http://mehmetalierturk.com/2010/04/16/istanbul-is-ready-for-sale-on-the-app-store/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 09:33:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[Istanbul]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1115</guid>
		<description><![CDATA[Yesterday, my new iPhone App (extended version of Istanbul Guide) has been approved for sale on the App Store. New App provides more and rich content with additional features such as public transportation lines (metro &#38; trams for now) and &#8230; <a href="http://mehmetalierturk.com/2010/04/16/istanbul-is-ready-for-sale-on-the-app-store/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday, my new iPhone App (extended version of Istanbul Guide) has been approved for sale on the App Store. New App provides more and rich content with additional features such as public transportation lines (metro &amp; trams for now) and weather information for Istanbul.</p>
<p><a title="Istanbul iPhone App" href="http://itunes.apple.com/us/app/istanbul/id367264573?mt=8" target="_blank"><img class="aligncenter size-thumbnail wp-image-1118" title="istanbul" src="http://mehmetalierturk.com/wp-content/uploads/2010/04/istanbul-150x150.png" alt="" width="150" height="150" /></a></p>
<p>So far, your ideas helped me to improve the application to be more useful. Thank you for sharing your ideas with me. I’d be happy to see feedbacks.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/1aafb136-3ecf-43a0-8ff4-c33b2c27dc67/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=1aafb136-3ecf-43a0-8ff4-c33b2c27dc67" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2010/04/16/istanbul-is-ready-for-sale-on-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Impressions on Istanbul Guide</title>
		<link>http://mehmetalierturk.com/2010/01/20/first-impressions-on-istanbul-guide/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=first-impressions-on-istanbul-guide</link>
		<comments>http://mehmetalierturk.com/2010/01/20/first-impressions-on-istanbul-guide/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 03:13:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Istanbul]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1050</guid>
		<description><![CDATA[A few days ago Apple approved my iPhone Application and Istanbul Guide is available to download for free on App Store since 14 January 2010. So far, feedbacks are positive and I&#8217;ve decided to go on and improve it, actually &#8230; <a href="http://mehmetalierturk.com/2010/01/20/first-impressions-on-istanbul-guide/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few days ago <a class="zem_slink" title="Apple" rel="homepage" href="http://www.apple.com">Apple</a> approved my <a class="zem_slink" title="iPhone" rel="homepage" href="http://www.apple.com/iphone">iPhone</a> Application and <a title="Istanbul Guide" href="http://mehmetalierturk.com/projects/iphone/istanbul-guide/">Istanbul Guide</a> is available to <a href="http://itunes.apple.com/tr/app/istanbul-guide/id349999303?mt=8">download for free</a> on <a class="zem_slink" title="App Store" rel="homepage" href="http://www.apple.com/iphone/appstore/">App Store</a> since 14 January 2010. So far, feedbacks are positive and I&#8217;ve decided to go on and improve it, actually I’m going to put the things that I have removed and also, implement some new features.</p>
<p>The first app is developed to learn about platform and the application approval process which was a real pain. I&#8217;m hopping the next time, it will be easier to publish an app on app store.</p>
<p>I want to share some data about the app, despite it has been online for 6 days, the application is downloaded almost 1K, yes, almost 1000 times. Most of the downloads come from Turkey and followed by european countries like Denmark, Netherlands and those are followed by the US.</p>
<p>I want to thank everyone who downloaded the app.</p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2010/01/20/first-impressions-on-istanbul-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World on iPhone</title>
		<link>http://mehmetalierturk.com/2010/01/11/hello-world-on-iphone/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hello-world-on-iphone</link>
		<comments>http://mehmetalierturk.com/2010/01/11/hello-world-on-iphone/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 13:44:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Istanbul]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=1021</guid>
		<description><![CDATA[I have played most of the popular application development platforms available today from Microsoft&#8217;s .Net to open source platforms on unix/linux with python/php/java/c++ &#8230; etc. However, I couldn&#8217;t had a change to develop for Mac OS X platforms till having &#8230; <a href="http://mehmetalierturk.com/2010/01/11/hello-world-on-iphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have played most of the popular application development platforms available today from Microsoft&#8217;s .Net to open source platforms on unix/linux with python/php/java/c++ &#8230; etc. However, I couldn&#8217;t had a change to develop for Mac OS X platforms till having a Mac.</p>
<p>Spending a few weeks (not full time) for learning and developing for Mac OS X is enough and fun. Learning  Obj-c is not a big issue but it takes some time to get familiar with the libraries and frameworks. I made my choice to build an iPhone application as a start point and made a simple hello iphone world application and called it &#8220;Istanbul Guide&#8221;.</p>
<p>Application contains some popular places in Istanbul for the tourists and also, provides some basic information like text, photo and the current distance about locations. As I said app is not a big deal (some screens shown below), wait for the killer ones &#8230;</p>
<p><a href="http://mehmetalierturk.com/wp-content/uploads/2010/01/IMG_0056.png"><img class="alignleft size-medium wp-image-1022" title="IMG_0056" src="http://mehmetalierturk.com/wp-content/uploads/2010/01/IMG_0056-200x300.png" alt="" width="200" height="300" /></a><a href="http://mehmetalierturk.com/wp-content/uploads/2010/01/IMG_0057.png"><img class="aligncenter size-medium wp-image-1023" title="IMG_0057" src="http://mehmetalierturk.com/wp-content/uploads/2010/01/IMG_0057-200x300.png" alt="" width="200" height="300" /></a></p>
<p>Also working on a <a href="http://mehmetalierturk.com/projects/iphone">page</a> to provide my iPhone App statuses.</p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2010/01/11/hello-world-on-iphone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Becoming a Mac</title>
		<link>http://mehmetalierturk.com/2009/12/03/becoming-a-mac/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=becoming-a-mac</link>
		<comments>http://mehmetalierturk.com/2009/12/03/becoming-a-mac/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 07:21:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Magic Mouse]]></category>

		<guid isPermaLink="false">http://mehmetalierturk.com/?p=929</guid>
		<description><![CDATA[Its just started with a new macbook pro &#8230; Bought it and love it &#8230; Helping Mac users &#38; developers &#8230; Today I got my Magic Mouse! Nothing to say, its Magic. Thanks dude @kemalispirli &#8230; Finally, someone made it! &#8230; <a href="http://mehmetalierturk.com/2009/12/03/becoming-a-mac/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Its just started with a <a href="http://mehmetalierturk.com/2009/09/16/first-post-from-snow-leopard/">new macbook pro</a> &#8230; </p>
<p>Bought it and love it &#8230; </p>
<p>Helping Mac users &amp; developers &#8230; </p>
<p>Today I got my <a href="http://www.apple.com/magicmouse/">Magic Mouse</a>! Nothing to say, its Magic. Thanks dude <a href="http://twitter.com/kemalispirli">@kemalispirli</a> &#8230;<br />
<a href="http://mehmetalierturk.com/wp-content/uploads/2009/12/magic.png"><img src="http://mehmetalierturk.com/wp-content/uploads/2009/12/magic-300x159.png" alt="magic" title="magic" width="300" height="159" class="aligncenter size-medium wp-image-930"></a></p>
<p>Finally, someone made it! This <a href="http://www.apple.com">company</a> impressed me &#8230; </p>
<p>And now, I&#8217;m a mac &#8230; </p>
<p>The next thing is <a class="zem_slink" href="http://www.apple.com/iphone" title="iPhone" rel="homepage">3GS</a> &#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2009/12/03/becoming-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android is Getting Polular</title>
		<link>http://mehmetalierturk.com/2008/11/01/android-is-getting-polular/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=android-is-getting-polular</link>
		<comments>http://mehmetalierturk.com/2008/11/01/android-is-getting-polular/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 08:02:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.mehmetalierturk.com/?p=376</guid>
		<description><![CDATA[Motorola moving from linux based mobile phone stack to Google&#8217;s Android. It seems there would be big compitition between iPhone &#38; Android in the future. Today,  I think iPhone ahead of others]]></description>
			<content:encoded><![CDATA[<p>Motorola <a href="http://tech.slashdot.org/article.pl?sid=08/10/31/2320258&amp;from=rss">moving</a> from linux based mobile phone stack to Google&#8217;s <a href="http://en.wikipedia.org/wiki/Google_Android">Android</a>. It seems there would be big compitition between iPhone &amp; Android in the future. Today,  I think iPhone ahead of others</p>
]]></content:encoded>
			<wfw:commentRss>http://mehmetalierturk.com/2008/11/01/android-is-getting-polular/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

