<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Lisudza&#039;s Blog</title>
	<atom:link href="http://lisudza.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lisudza.wordpress.com</link>
	<description>Just another WordPress.com site</description>
	<lastBuildDate>Fri, 30 Dec 2011 06:23:12 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='lisudza.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/d703ec677a3922544b902d28b4550d47?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Lisudza&#039;s Blog</title>
		<link>http://lisudza.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lisudza.wordpress.com/osd.xml" title="Lisudza&#039;s Blog" />
	<atom:link rel='hub' href='http://lisudza.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tweeting using twitter for android intent</title>
		<link>http://lisudza.wordpress.com/2010/12/29/tweeting-using-twitter-for-android-intent/</link>
		<comments>http://lisudza.wordpress.com/2010/12/29/tweeting-using-twitter-for-android-intent/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 11:37:01 +0000</pubDate>
		<dc:creator>lisudza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://lisudza.wordpress.com/?p=37</guid>
		<description><![CDATA[Well am working on this application where I want to be able to posts tweets using the native android application.  Here is the how to. launch the twitter PostActivity directly by getting the ActivityInfo instance of it. This is done by scanning through the activities returned by the Intent.ACTION_SEND and looking for &#8220;com.twitter.android.PostActivity&#8221;. This is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=37&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well am working on this application where I want to be able to posts tweets using the native android application.  Here is the how to.</p>
<p>launch the twitter PostActivity directly by getting the ActivityInfo instance of it. This is done by scanning through the activities returned by the Intent.ACTION_SEND and looking for &#8220;com.twitter.android.PostActivity&#8221;.</p>
<p>This is a not a clean way of doing it since we are searching for a particular hard coded activity. The best way is to just let the user select from the dialog box returned by Intent.ACTION_SEND.</p>
<p><code></p>
<blockquote><p>
Context context = getApplication();<br />
String message = "Testing integration into native twitter android app <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ";<br />
message = "It works!";<br />
try {<br />
Intent intent = new Intent(Intent.ACTION_SEND);<br />
intent.putExtra(Intent.EXTRA_TEXT, message);<br />
intent.setType("text/plain");<br />
final PackageManager pm = context.getPackageManager();<br />
final List activityList = pm.queryIntentActivities(intent, 0);<br />
int len = activityList.size();<br />
for (int i = 0; i &lt; len; i++) {<br />
final ResolveInfo app = (ResolveInfo) activityList.get(i);<br />
if ("com.twitter.android.PostActivity"<br />
.equals(app.activityInfo.name)) {<br />
final ActivityInfo activity = app.activityInfo;<br />
final ComponentName name = new ComponentName(<br />
activity.applicationInfo.packageName, activity.name);<br />
intent = new Intent(Intent.ACTION_SEND);<br />
intent.addCategory(Intent.CATEGORY_LAUNCHER);<br />
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK<br />
| Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);<br />
intent.setComponent(name);<br />
intent.putExtra(Intent.EXTRA_TEXT, message);<br />
context.startActivity(intent);<br />
break;<br />
}<br />
}<br />
} catch (final ActivityNotFoundException e) {<br />
Toast.makeText(this, "Damn! no suitable Twitter apps found.",<br />
Toast.LENGTH_SHORT) .show();<br />
}</p></blockquote>
<p></code><br />
Happy Coding.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lisudza.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lisudza.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lisudza.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lisudza.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lisudza.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lisudza.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lisudza.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lisudza.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lisudza.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lisudza.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lisudza.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lisudza.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lisudza.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lisudza.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=37&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lisudza.wordpress.com/2010/12/29/tweeting-using-twitter-for-android-intent/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4acb0e61d2d64d4c8ba053ddf2e657fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lisudza</media:title>
		</media:content>
	</item>
		<item>
		<title>CyanogenMod 6.0.0 RC1 D/S</title>
		<link>http://lisudza.wordpress.com/2010/07/11/cyanogenmod-6-0-0-rc1-ds/</link>
		<comments>http://lisudza.wordpress.com/2010/07/11/cyanogenmod-6-0-0-rc1-ds/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 16:51:57 +0000</pubDate>
		<dc:creator>lisudza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[C2DM]]></category>
		<category><![CDATA[CM6]]></category>
		<category><![CDATA[Cyanogen]]></category>
		<category><![CDATA[Dream]]></category>

		<guid isPermaLink="false">http://lisudza.wordpress.com/?p=31</guid>
		<description><![CDATA[For those of us who have been patiently waiting for Cyanogen 6 to be released, well the first release candidate has been released for the Dream, Magic and the Nexus one devcies. Cyanogen promises to release builds for otehr devcies soon. I for one have been trying out nightly builds. Been facing lotsa bugs and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=31&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For those of us who have been patiently waiting for Cyanogen 6 to be released, well the first release candidate has been released for the Dream, Magic and the Nexus one devcies. Cyanogen promises to release builds for otehr devcies soon. I for one have been trying out nightly builds. Been facing lotsa bugs and all (am not complaining and all) and after falshing and testing the RC1 release I feel I know how much work it takes to build stable builds. Here is a complete <a title="changelog" href="http://github.com/CyanogenMod/android_vendor_cyanogen/blob/froyo/CHANGELOG.mkdn" target="_blank">changelog</a>.</p>
<p>ADW Launcher which is the deafult launcher since CM 5.0.8, has lots of cool new features (its by far the most customizable launcher replacement I have seen so far). Another cool thing I think developers and users alike will find fun on the new android version (2.2), is the Cloud to device messaging C2DM api. lotsa of capabilities and applications you can implement with this new API.</p>
<p>The <a title="CyanogenMod forum" href="http://forum.cyanogenmod.com" target="_blank">CynanogenMod forum</a> has been quite slow since the announcement of the availability of CM 6 heres its quite slow but you  can download the same binaries <a title="here" href="http://kanged.net/mirror" target="_blank">here</a> (dont forget to check the MD5 sum after downloading)</p>
<p>Happy Flashing <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lisudza.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lisudza.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lisudza.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lisudza.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lisudza.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lisudza.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lisudza.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lisudza.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lisudza.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lisudza.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lisudza.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lisudza.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lisudza.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lisudza.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=31&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lisudza.wordpress.com/2010/07/11/cyanogenmod-6-0-0-rc1-ds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4acb0e61d2d64d4c8ba053ddf2e657fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lisudza</media:title>
		</media:content>
	</item>
		<item>
		<title>CyanogenMod 6.0 Feature list</title>
		<link>http://lisudza.wordpress.com/2010/07/08/cyanogenmod-6-0-feature-list/</link>
		<comments>http://lisudza.wordpress.com/2010/07/08/cyanogenmod-6-0-feature-list/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 08:47:44 +0000</pubDate>
		<dc:creator>lisudza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Cyanogen]]></category>
		<category><![CDATA[Froyo]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[teamdouche]]></category>

		<guid isPermaLink="false">http://lisudza.wordpress.com/?p=27</guid>
		<description><![CDATA[For all cyanogen Mod lovers, a pretty sure that y&#8217;all waiting anxiously for CyanogenMod 6.0.0 Froyo to drop and flash them on your phones. I for one am so waiting for TeamDouche to release test0. If you feel that the wait is too long, you can always flash the nightly builds for the various devices [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=27&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For all cyanogen Mod lovers, a pretty sure that y&#8217;all waiting anxiously for CyanogenMod 6.0.0 Froyo to drop and flash them on your phones. I for one am so waiting for TeamDouche to release test0. If you feel that the wait is too long, you can always flash the nightly builds for the various devices that Cyanogen supports <a title="Cynaogen 6.0 nightly builds" href="http://buildbot.teamdouche.net/nightly/dream_sapphire/" target="_blank">here</a> . Under one condition DO NOT POST any bugs you encouter when running the nightly builds. So kmobs of #TeamDouche has posted a video showing CM6 feature list.</p>
<span style="text-align:center; display: block;"><a href="http://lisudza.wordpress.com/2010/07/08/cyanogenmod-6-0-feature-list/"><img src="http://img.youtube.com/vi/eoL2UE_tiaY/2.jpg" alt="" /></a></span>
<p>Must say that these guys are really doing a really good job, and in the spirit of open source, I urge all of you that use his builds to spare him a couple of dollars say like 5 and buy him some beer(s). You do realize that he would have been spending his time doing other stuff but on the contrary he keeps doing his thing and gives these wonderful ROM&#8217;s for us to use.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lisudza.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lisudza.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lisudza.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lisudza.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lisudza.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lisudza.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lisudza.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lisudza.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lisudza.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lisudza.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lisudza.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lisudza.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lisudza.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lisudza.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=27&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lisudza.wordpress.com/2010/07/08/cyanogenmod-6-0-feature-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4acb0e61d2d64d4c8ba053ddf2e657fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lisudza</media:title>
		</media:content>
	</item>
		<item>
		<title>Android 2.2 Froyo</title>
		<link>http://lisudza.wordpress.com/2010/07/07/android-2-2-froyo/</link>
		<comments>http://lisudza.wordpress.com/2010/07/07/android-2-2-froyo/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 19:36:49 +0000</pubDate>
		<dc:creator>lisudza</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Froyo]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://lisudza.wordpress.com/?p=22</guid>
		<description><![CDATA[So I was going through the new features and API changes on Android 2.2 (some would say its rather late, but then again it better late &#8230;.) anyway So I read about this new feature which enables Exchange administrators on the device to remotely wipe the contents on the phone and reset it to factory [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=22&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I was going through the new features and API changes on Android 2.2 (some would say its rather late, but then again it better late &#8230;.) anyway So I read about this new feature which enables Exchange administrators on the device to remotely wipe the contents on the phone and reset it to factory settings in the event the phone is stolen, HOW COOL IS THAT. Especially in a city like Nairobi which has a lot of muggings, this feature comes in quite handy  I must say. There are a lot of other cool new developer  stuff which you can read on <a title="here" href="http://developer.android.com/sdk/android-2.2-highlights.html#DeveloperServices" target="_blank">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lisudza.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lisudza.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lisudza.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lisudza.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lisudza.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lisudza.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lisudza.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lisudza.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lisudza.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lisudza.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lisudza.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lisudza.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lisudza.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lisudza.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=22&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lisudza.wordpress.com/2010/07/07/android-2-2-froyo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4acb0e61d2d64d4c8ba053ddf2e657fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lisudza</media:title>
		</media:content>
	</item>
		<item>
		<title>Cyanogen ports Eclair to G1</title>
		<link>http://lisudza.wordpress.com/2010/04/29/cyanogen-ports-eclair-to-g1/</link>
		<comments>http://lisudza.wordpress.com/2010/04/29/cyanogen-ports-eclair-to-g1/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 18:58:51 +0000</pubDate>
		<dc:creator>lisudza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lisudza.wordpress.com/?p=10</guid>
		<description><![CDATA[For most Android fan boys, the T Mobile G1 was the original Android device. Being a G1 owner myself, I have been wishing for an upgrade from my current version 1.6. not that its bad but lets face it Eclair is way more advanced. I read today on engadget that cyanogenMod has ported Eclair for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=10&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For most Android fan boys, the T Mobile G1 was the original Android device. Being a G1 owner myself, I have been wishing for an upgrade from my current version 1.6. not that its bad but lets face it Eclair is way more advanced. I read today on engadget that cyanogenMod has ported Eclair for the G1 was possibly the best news today.  Developer DEV kmobs has posted a highlight video of CyanogenMod 5.0.7</p>
<span style="text-align:center; display: block;"><a href="http://lisudza.wordpress.com/2010/04/29/cyanogen-ports-eclair-to-g1/"><img src="http://img.youtube.com/vi/3HVBVlAui3s/2.jpg" alt="" /></a></span>
<p>CyanogenMod says he has like two bugs he is fixing it then release the ROM. I personally cant wait to upgrade my G1. (finally I also get to enjoy live wallpapers <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lisudza.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lisudza.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lisudza.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lisudza.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lisudza.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lisudza.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lisudza.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lisudza.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lisudza.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lisudza.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lisudza.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lisudza.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lisudza.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lisudza.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=10&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lisudza.wordpress.com/2010/04/29/cyanogen-ports-eclair-to-g1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4acb0e61d2d64d4c8ba053ddf2e657fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lisudza</media:title>
		</media:content>
	</item>
		<item>
		<title>Android Scripting Environment</title>
		<link>http://lisudza.wordpress.com/2010/04/27/android-scripting-env/</link>
		<comments>http://lisudza.wordpress.com/2010/04/27/android-scripting-env/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 16:29:39 +0000</pubDate>
		<dc:creator>lisudza</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://lisudza.wordpress.com/?p=6</guid>
		<description><![CDATA[Google has announced a new way of writing Android applications. apparently you will no longer need to have a desktop or laptop for you to write android apps. The Android Scripting Environment (ASE) will make Android development easier and more accessible for a number of developers who don&#8217;t want to build a full application. This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=6&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Google has announced a new way of writing Android applications. apparently you will no longer need to have a desktop or laptop for you to write android apps. The Android Scripting Environment (ASE) will make Android development easier and more accessible for a number of developers who don&#8217;t want to build a full application.</p>
<p><a href="http://lisudza.files.wordpress.com/2010/04/scripteditor.png"><img class="alignnone size-medium wp-image-7" title="scripteditor" src="http://lisudza.files.wordpress.com/2010/04/scripteditor.png?w=300&#038;h=200" alt="" width="300" height="200" /></a></p>
<p>This technology allows developers to build apps directly from their android powered phones. Developers will be able to tap into the inbuilt android API&#8217;s. You can find more information about this on http://code.google.com/p/android-scripting</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lisudza.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lisudza.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lisudza.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lisudza.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lisudza.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lisudza.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lisudza.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lisudza.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lisudza.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lisudza.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lisudza.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lisudza.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lisudza.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lisudza.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=6&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lisudza.wordpress.com/2010/04/27/android-scripting-env/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4acb0e61d2d64d4c8ba053ddf2e657fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lisudza</media:title>
		</media:content>

		<media:content url="http://lisudza.files.wordpress.com/2010/04/scripteditor.png?w=300" medium="image">
			<media:title type="html">scripteditor</media:title>
		</media:content>
	</item>
		<item>
		<title>My first post</title>
		<link>http://lisudza.wordpress.com/2010/04/24/my-first-post/</link>
		<comments>http://lisudza.wordpress.com/2010/04/24/my-first-post/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 17:25:46 +0000</pubDate>
		<dc:creator>lisudza</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lisudza.wordpress.com/2010/04/24/my-first-post/</guid>
		<description><![CDATA[Well, am not much of a blogger but here goes my first post&#8230;..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=3&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, am not much of a blogger but here goes my first post&#8230;..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lisudza.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lisudza.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lisudza.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lisudza.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lisudza.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lisudza.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lisudza.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lisudza.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lisudza.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lisudza.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lisudza.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lisudza.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lisudza.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lisudza.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lisudza.wordpress.com&amp;blog=13304792&amp;post=3&amp;subd=lisudza&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lisudza.wordpress.com/2010/04/24/my-first-post/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4acb0e61d2d64d4c8ba053ddf2e657fc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lisudza</media:title>
		</media:content>
	</item>
	</channel>
</rss>
