<?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>KennyNet &#187; android</title>
	<atom:link href="http://www.kennynet.co.uk/tag/android/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kennynet.co.uk</link>
	<description>Ramblings of a PHP developer</description>
	<lastBuildDate>Fri, 02 Dec 2011 14:05:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Handcent SMS: Reset the blacklist password</title>
		<link>http://www.kennynet.co.uk/2010/07/01/handcent-sms-reset-blacklist-password/</link>
		<comments>http://www.kennynet.co.uk/2010/07/01/handcent-sms-reset-blacklist-password/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 21:26:01 +0000</pubDate>
		<dc:creator>Kenny Millington</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[adb]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[handcent]]></category>

		<guid isPermaLink="false">http://www.kennynet.co.uk/?p=133</guid>
		<description><![CDATA[I recently forgot my blacklist password while using handcent sms so investigated how possible it would be to reset this password without reinstalling the application. It turns out it&#8217;s pretty straight forward but your phone must be rooted for this to work and you must have enabled usb debugging. The process goes something like this&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>I recently forgot my blacklist password while using handcent sms so investigated how possible it would be to reset this password without reinstalling the application. </p>
<p>It turns out it&#8217;s pretty straight forward but <strong>your phone must be rooted</strong> for this to work and you must have enabled usb debugging.</p>
<p>The process goes something like this&#8230;</p>
<p>First on your phone navigate to Settings -> Applications -> Manage Applications -> Handcent SMS and click the Force Stop button to close handcent sms.</p>
<p>Next we retrieve the preferences file where the password is stored:-</p>
<pre>
$ adb pull /data/data/com.handcent.nextsms/shared_prefs/
com.handcent.nextsms_preferences.xml
</pre>
<p>Then edit the file you just pulled, find and remove the line that looks something like:-</p>
<pre>
&lt;string name="hc_password"&gt;0cc175b9c0f1b6a831c399e269772661&lt;/string&gt;
</pre>
<p>Next we push that file back to the device as follows:-</p>
<pre>
$ adb push com.handcent.nextsms_preferences.xml /data/data/
com.handcent.nextsms/shared_prefs/com.handcent.nextsms_preferences.xml
</pre>
<p>Now open handcent sms and the password should be removed ready for you to set another!</p>
<p><em>Obviously the above commands should be entered on one line, line breaks have been added to wrap the content&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennynet.co.uk/2010/07/01/handcent-sms-reset-blacklist-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extracting rom.zip from RUU update in Linux</title>
		<link>http://www.kennynet.co.uk/2010/06/24/extract-rom-zip-from-ruu-in-linux/</link>
		<comments>http://www.kennynet.co.uk/2010/06/24/extract-rom-zip-from-ruu-in-linux/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 12:10:41 +0000</pubDate>
		<dc:creator>Kenny Millington</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[rom.zip]]></category>
		<category><![CDATA[RUU]]></category>

		<guid isPermaLink="false">http://www.kennynet.co.uk/?p=126</guid>
		<description><![CDATA[I&#8217;ve written a quick rough and ready tool that can extract the rom.zip file from a RUU update from HTC. The instructions are located in the extractrom.c file itself and reproduced here for clarity:- * REQUIREMENTS * This program requires a patched unshield 0.6 to correctly support newer * installshield cab files. * * $ [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written a quick rough and ready tool that can extract the rom.zip file from a RUU update from HTC.</p>
<p>The instructions are located in the extractrom.c file itself and reproduced here for clarity:-</p>
<pre>
 * REQUIREMENTS
 * This program requires a patched unshield 0.6 to correctly support newer
 * installshield cab files.
 *
 * $ wget http://bit.ly/aWIjG2 (used bit.ly link for blog due to styling issues)
 * $ tar xzf unshield-0.6.tar.gz
 * $ cd unshield-0.6
 * $ patch -p1 < ../unshield.patch
 * $ ./configure --prefix=/usr &#038;&#038; make &#038;&#038; sudo make install
 *
 * COMPILATION
 * $ gcc -Wall -lunshield -o extractrom extractrom.c
 *
 * USAGE
 * $ ./extractrom /path/to/RUU.exe
 *
 * If successful it will create rom.zip in your current directory.
 *
</pre>
<p>(pay some attention to the NOTES and TODO sections - at the moment the tool doesn't clean up its temporary directory...)</p>
<p>Example Usage:-</p>
<pre>
$ ./extractrom RUU_Bravo_O2_UK_1.20.207.1_Radio_32.36.00.28U_4.06.00.02_2_release_124865.exe
Extracting data1.cab...
Extracting data1.hdr...
Extracting rom.zip...
Done!
$ ls -lh rom.zip
-rw-r--r-- 1 kenny kenny 147M 2010-06-24 13:06 rom.zip
</pre>
<p>You can download it from here: <a href="/misc/extractrom-0.1.tgz">extractrom-0.1.tgz</a>.</p>
<p><strong>Update (2011-12): </strong>This is now maintained in github at: <a href="https://github.com/kmdm/unruu/">https://github.com/kmdm/unruu/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kennynet.co.uk/2010/06/24/extract-rom-zip-from-ruu-in-linux/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

