<?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>Schogini</title>
	<atom:link href="http://sree.cc/feed" rel="self" type="application/rss+xml" />
	<link>http://sree.cc</link>
	<description>Over The Top Professionals</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:47:57 +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>Getting battery details of a Blackberry device</title>
		<link>http://sree.cc/blackberry/getting-battery-details-of-a-blackberry-device</link>
		<comments>http://sree.cc/blackberry/getting-battery-details-of-a-blackberry-device#comments</comments>
		<pubDate>Fri, 03 Feb 2012 02:21:19 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[Blackberry]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10981</guid>
		<description><![CDATA[The following code snippet will help you to get battery information of the Blackberry device: //Battery is charging: DeviceInfo.BSTAT_LOW_RATE_CHARGING; //Battery is charging via the AC contacts DeviceInfo.BSTAT_AC_CONTACTS; //Battery is low DeviceInfo.BSTAT_LOW //Battery at or below zero percent. DeviceInfo.BSTAT_DEAD //Battery is too cold DeviceInfo.BSTAT_TOO_COLD //Battery is too hot DeviceInfo.BSTAT_TOO_HOT That&#8217;s it]]></description>
		<wfw:commentRss>http://sree.cc/blackberry/getting-battery-details-of-a-blackberry-device/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Splitting a string into an array in Android</title>
		<link>http://sree.cc/google/android/splitting-a-string-into-an-array-in-android</link>
		<comments>http://sree.cc/google/android/splitting-a-string-into-an-array-in-android#comments</comments>
		<pubDate>Thu, 02 Feb 2012 02:24:25 +0000</pubDate>
		<dc:creator>Rajeev Pillai</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10976</guid>
		<description><![CDATA[String str = &#8220;one,two,three,four,five&#8221;; String arr[] = str.split(&#8220;,&#8221;); System.out.println(&#8220;Array Size: &#8221; + arr.length); The &#8216;&#124;&#8217; character means OR in regex, so you have to split it like following: line.split("\\&#124;"); &#160; That&#8217;s it!]]></description>
		<wfw:commentRss>http://sree.cc/google/android/splitting-a-string-into-an-array-in-android/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To insert Alert View in corona.</title>
		<link>http://sree.cc/corona-sdk/to-insert-alert-view-in-corona</link>
		<comments>http://sree.cc/corona-sdk/to-insert-alert-view-in-corona#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:32:49 +0000</pubDate>
		<dc:creator>jerene</dc:creator>
				<category><![CDATA[Corona]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10972</guid>
		<description><![CDATA[Syntax: native.showAlert( title, message [, { buttonLabels } [, listener] ] )]]></description>
		<wfw:commentRss>http://sree.cc/corona-sdk/to-insert-alert-view-in-corona/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get the duration for which an application runs.</title>
		<link>http://sree.cc/corona-sdk/get-the-duration-for-which-an-application-runs</link>
		<comments>http://sree.cc/corona-sdk/get-the-duration-for-which-an-application-runs#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:31:35 +0000</pubDate>
		<dc:creator>arungj</dc:creator>
				<category><![CDATA[Corona]]></category>
		<category><![CDATA[enterframe]]></category>
		<category><![CDATA[ev]]></category>
		<category><![CDATA[event.time]]></category>
		<category><![CDATA[get time]]></category>
		<category><![CDATA[life time]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10967</guid>
		<description><![CDATA[function printTimeSinceStart( event ) print (event.time/1000 .. " seconds since app started." ) end Runtime:addEventListener("enterFrame", printTimeSinceStart) The above code gives the time in milliseconds since the start of the application.]]></description>
		<wfw:commentRss>http://sree.cc/corona-sdk/get-the-duration-for-which-an-application-runs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check if we are running iOS 4+</title>
		<link>http://sree.cc/iphone/check-if-we-are-running-ios-4</link>
		<comments>http://sree.cc/iphone/check-if-we-are-running-ios-4#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:31:12 +0000</pubDate>
		<dc:creator>shajir</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10971</guid>
		<description><![CDATA[+(BOOL)isOS4{ NSComparisonResult order = [[UIDevice currentDevice].systemVersion compare: @"4.0" options: NSNumericSearch]; if (order == NSOrderedSame &#124;&#124; order == NSOrderedDescending) { return YES; } else { return NO; } }]]></description>
		<wfw:commentRss>http://sree.cc/iphone/check-if-we-are-running-ios-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get current app version number from bundle</title>
		<link>http://sree.cc/iphone/get-current-app-version-number-from-bundle</link>
		<comments>http://sree.cc/iphone/get-current-app-version-number-from-bundle#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:30:14 +0000</pubDate>
		<dc:creator>shajir</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Objective C]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10968</guid>
		<description><![CDATA[[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]]]></description>
		<wfw:commentRss>http://sree.cc/iphone/get-current-app-version-number-from-bundle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get current app version number from AndroidManifest.xml</title>
		<link>http://sree.cc/google/android/get-current-app-version-number-from-androidmanifest-xml</link>
		<comments>http://sree.cc/google/android/get-current-app-version-number-from-androidmanifest-xml#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:29:25 +0000</pubDate>
		<dc:creator>shajir</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10963</guid>
		<description><![CDATA[//Usage from activity: //String verison = GlobalSettings.getVersionName(this,MyActivity.class) public static String getVersionName(Context context, Class cls) { try { ComponentName comp = new ComponentName(context, cls); PackageInfo pinfo = context.getPackageManager().getPackageInfo(comp.getPackageName(), 0); return "Version: " + pinfo.versionName; } catch (android.content.pm.PackageManager.NameNotFoundException e) { return null; } }]]></description>
		<wfw:commentRss>http://sree.cc/google/android/get-current-app-version-number-from-androidmanifest-xml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To remove keypad by touching background</title>
		<link>http://sree.cc/corona-sdk/to-remove-keypad-by-touching-background</link>
		<comments>http://sree.cc/corona-sdk/to-remove-keypad-by-touching-background#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:29:22 +0000</pubDate>
		<dc:creator>jerene</dc:creator>
				<category><![CDATA[Corona]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10959</guid>
		<description><![CDATA[Eg: function keyboard_disappear() native.setKeyboardFocus( nil ) end object_Name:addEventListener("tap", keyboard_disappear)]]></description>
		<wfw:commentRss>http://sree.cc/corona-sdk/to-remove-keypad-by-touching-background/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get the duration of an audio file in corona</title>
		<link>http://sree.cc/corona-sdk/get-the-duration-of-an-audio-file-in-corona</link>
		<comments>http://sree.cc/corona-sdk/get-the-duration-of-an-audio-file-in-corona#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:29:12 +0000</pubDate>
		<dc:creator>arungj</dc:creator>
				<category><![CDATA[Corona]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[audiohandle]]></category>
		<category><![CDATA[getduration]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10960</guid>
		<description><![CDATA[audio.getDuration( audioHandle ) returns the duration in milliseconds.]]></description>
		<wfw:commentRss>http://sree.cc/corona-sdk/get-the-duration-of-an-audio-file-in-corona/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pause the Physics Engine in Corona</title>
		<link>http://sree.cc/corona-sdk/pause-the-physics-engine-in-corona</link>
		<comments>http://sree.cc/corona-sdk/pause-the-physics-engine-in-corona#comments</comments>
		<pubDate>Tue, 31 Jan 2012 08:28:11 +0000</pubDate>
		<dc:creator>antonyjoemathew</dc:creator>
				<category><![CDATA[Corona]]></category>

		<guid isPermaLink="false">http://sree.cc/?p=10957</guid>
		<description><![CDATA[For pausing physics engine in Corona, physics.pause()]]></description>
		<wfw:commentRss>http://sree.cc/corona-sdk/pause-the-physics-engine-in-corona/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: sree.cc @ 2012-02-06 08:48:24 -->
