<?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>HTC Desire S Blog - HTC Desire HD Blog - HTC Desire Blog</title>
	<atom:link href="http://htcdesireportal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://htcdesireportal.com</link>
	<description>Apps for HTC Desire, Games for HTC Desire, news on HTC Desire</description>
	<lastBuildDate>Tue, 24 Jan 2012 18:13:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>HTC Desire Guides &#8211; Android Debug Bridge</title>
		<link>http://htcdesireportal.com/htc-desire-guides-android-debug-bridge/</link>
		<comments>http://htcdesireportal.com/htc-desire-guides-android-debug-bridge/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 19:19:15 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[adb]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[android sdk]]></category>
		<category><![CDATA[Debug Bridge]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[platform-tools]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2404</guid>
		<description><![CDATA[Most of you may know the Android Debug Bridge or &#8220;adb&#8221; from one of the millions tutorials for Android devices. Indeed, adb is a very useful tool to handle various situations. May it be a fix, or just pushing data to your device. For &#8220;advanced users&#8221; of Android devices it&#8217;s a must and here&#8217;s how [...]]]></description>
			<content:encoded><![CDATA[<p>Most of you may know the <strong>Android Debug Bridge or &#8220;adb&#8221;</strong> from one of the millions tutorials for Android devices. Indeed, adb is a very useful tool to handle various situations. May it be a fix, or just pushing data to your device. For <strong>&#8220;advanced users&#8221; of Android devices</strong> it&#8217;s a must and here&#8217;s how to use it <strong>(<a href="http://forum.xda-developers.com/showthread.php?t=1427008">Thanks to XDA-Member biggem001</a></strong> for the basic structure of this guide):</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>To begin with, there are some steps of preperation to be able to use the Android Debuge Bridge:</p>
<p><strong>1. Download the<a href="http://developer.android.com/sdk/index.html"> official Android SDK (here, click!)</a></strong></p>
<p>Mind that you need to choose the correct link, depending on your operationg system (Windows, MacOS or Linux). Furthermore, the installation requires the<a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html"> Java JDK (download here, click!)</a></p>
<p><strong>2. Start the SDK  (double click &#8220;SDK Manager.exe&#8221;)</strong></p>
<p>Check the checkboxes next to &#8220;Android SDK Platform-tools&#8221; (under Tools) and  Google USB Driver package (under Extras). Then, click install. Afterwards, &#8220;adb.exe&#8221; should be located in something like &#8220;C:\&lt;your chosen directory\platform-tools\&#8221; . That&#8217;s it. You got the adb.</p>
<p><strong>3. To access ADB through any command prompt directory change the System Variables</strong></p>
<p>To do so,  right click on My Computer and go to =&gt; Properties =&gt; Advanced System Settings =&gt; Advanced (Tab) =&gt; Environment Variables =&gt; Under Stystem Variables scoll and double click on &#8220;Path&#8221;, a<strong>t the end</strong> of the variable value line add &#8221; ;C:\&lt;your chosen directory&gt;\platform-tools &#8220;. Afterwards you should be able to access the adb everywhere through &#8220;<strong>cmd.exe</strong>&#8220;.</p>
<p><strong>4. Make sure you have downloaded the latest drivers of your device. </strong></p>
<p>In order to do so, go to  <a href="http://www.htc.com/">htc.com</a> and download your device&#8217;s drivers. Those are usually included when installing HTC Sync.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>To use the adb 3 simple steps are required:</p>
<p>Firstly, connect your device to your PC via USB. Secondly, ensure that you have the &#8220;USB Debugging Mode&#8221; activated on your device (through Settings). As a thirst step, open up your console or &#8220;cmd.exe&#8221; in Windows.</p>
<p>Following commands are available:  <a href="http://forum.xda-developers.com/showthread.php?t=1427008">Thanks to XDA-Member biggem001</a> for this list, again.</p>
<p><strong>ADB Devices</strong> : This command shows all connected android devices that will respond to an ADB command. It is useful for making sure your device is connected.<br />
<strong>ADB Connect [IP:PORT]</strong> : This command will connect to your device over personal WIFI connection if your device is setup for ADB over WIFI (Requires root and NOT recommended)<br />
<strong>ADB Push [local_file] [remote_file]</strong> : This command will push any local file to the device (only if the device is Read/Writable. Stock /system/ folders are only Readable.<br />
<strong>ADB Pull [Remote_file or Directory] [Save file or Directory]</strong> : This command take files or an entire directory and save it to your desired location. This command only works when directory is read/Writable.<br />
<strong>ADB Shell [command]</strong> : This command will perform most UNIX commands on the device. Without a command, you can enter several shell commands before you ‘exit’. Most will not work unless SU is applied (# instead of $). Must be rooted for SU. Only play with these commands if they are known by you or exactly copied from instructions.<br />
<strong>ADB Logcat [ &gt; file.txt ]</strong> : This command will display (or save per &gt; file.txt) a log of what’s happening on the device. If you are receiving errors, turn on logcat, reproduce error, turn off, and send logcat to the developer.<br />
<strong>ADB Install [-r][-s] [local_apk]</strong> : This command force installs (or reinstalls –r or –s installs on SD-Card) any APK provided.<br />
<strong>ADB Uninstall [-k] [APK_Name]</strong> : This command uninstalls any APK Name provided (app.apk) and will even keep cache and other data with the –k tag.<br />
<strong>ADB start-server</strong> : This command will start the server if the server is off or killed. (Normally server will auto-start when ADB command is used)<br />
<strong>ADB kill-server</strong> : This command will close ADB server. Useful if ADB server is acting up or not connecting to any devices.<br />
<strong>ADB remount</strong> : This command will mounts the /system/ partition Read/Writable pending the device is allow to. Stock TFP will NOT.<br />
<strong>ADB root</strong> : This command will restart ADB with root permissions if the build allows for it. Stock TFP will NOT.<br />
<strong>ADB usb</strong> : This command will restart ADB on device to use USB connection for ADB communication.<br />
<strong>ADB tcpip [port]</strong> : This command will restart ADB on device to use TCPIP connection for ADB. Standard port is 5555. Again, this connect not recommended for file transfers.<br />
<strong>ADB reboot [recovery/bootloader]</strong> : This command will restart your device. If either of the two options are given, the device will boot into that mode (sadly TFP does not support the two options.. yet</p>
<p><em>Something missing? Write me a mail, or comment! </em></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-guides-android-debug-bridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire Apps &#8211; Counter Strike Portable</title>
		<link>http://htcdesireportal.com/htc-desire-apps-counter-strike-portable/</link>
		<comments>http://htcdesireportal.com/htc-desire-apps-counter-strike-portable/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 21:50:40 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[Counter Strike 1.6]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[XDA]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2397</guid>
		<description><![CDATA[Nearly everyone knows it. Millions have played it and are probably still playing it. Counter Strike. Valve&#8217;s legendary shooter-game changed the genre. Some legendary games have already been ported to mobile devices: Like GTA III or the classic &#8220;Doom&#8221;. It was kind of time for someone to publish Counter Strike for Android. XDA-Forummembers FrIuNs and TiP@H [...]]]></description>
			<content:encoded><![CDATA[<p>Nearly everyone knows it. Millions have played it and are probably still playing it. Counter Strike. Valve&#8217;s legendary shooter-game changed the genre. Some legendary games have already been ported to mobile devices: Like GTA III or the classic &#8220;Doom&#8221;. It was kind of time for someone to publish Counter Strike for Android. XDA-Forummembers <a title="FrIuNs" href="http://forum.xda-developers.com/member.php?u=1697646">FrIuNs</a> and <a title="TiP@H" href="http://forum.xda-developers.com/member.php?u=4218142">TiP@H</a> accepted the challenge. The result is:<strong> Counter Strike Portable</strong>. With the <strong>Unity3D engine</strong> they created an ego-shooter game for Android devices, using Counter Strike 1.6 ressources. That&#8217;s what it is: An entirely on their own developed shooter game which uses graphics from <strong>Valve&#8217;s CS1.6. </strong></p>
<p>The latest version currently is &#8220;6p&#8221; (however, if you <a href="http://depositfiles.com/files/yh5auz83r">download it</a> it says<strong> CS Portable 6y</strong>) and can be found &amp; downloaded at their <a href="http://forum.xda-developers.com/showthread.php?t=1447157">XDA-Thread (click)</a> <strong>for free</strong>. Furthermore, there is also a Desktop-Browser version available. This kinda ruined the gameplay at some points for me, because they usually have such big advantages with their mouse &amp; keyboard. Still, there are over <strong>6.000 active players online</strong> and waiting to compete with you. It&#8217;s great fun, although the controlls are something you have to get used to, if you have played it on the PC before. There is a kind of<strong> aiming help</strong>, which greatly improves the gameplay and tension.</p>
<p>On the <strong>&#8220;old&#8221; HTC Desire (Bravo)</strong> the game runs with about 20 fps and is more or less playable. It even worked with ICS on this Desire. For the other Desire devices, there shouldn&#8217;t be a problem. If you experience one, share it in the comments and I will try to contact the developer or post it in the  <a href="http://forum.xda-developers.com/showthread.php?t=1447157">XDA-Thread (click)</a>.</p>
<p>Official Gameplay Video on Samsung Galaxy SII:</p>
<p><center><br />
<iframe src="http://www.youtube.com/embed/_JOwY5hT5ko" frameborder="0" width="420" height="315"></iframe></center></p>
<p>Surely, developement hasn&#8217;t finished yet, but it&#8217;s already very playable and we can be curious about its future.</p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-apps-counter-strike-portable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire News &#8211; Google Maps Update to 6.1.1</title>
		<link>http://htcdesireportal.com/htc-desire-news-google-maps-update-to-6-1-1/</link>
		<comments>http://htcdesireportal.com/htc-desire-news-google-maps-update-to-6-1-1/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 15:16:38 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[6.1.1]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2393</guid>
		<description><![CDATA[Google is avid as always and publishes a new update for Google Maps. According to the changelog, it fixes several bugs for phones as well as tablets. I can&#8217;t tell which Bugs that were, but if you have experienced any improvements, share it in the comments! However, the update is free and you might have [...]]]></description>
			<content:encoded><![CDATA[<p>Google is avid as always and publishes a new <strong>update for Google Maps</strong>. According to the changelog, it<strong> fixes several bugs</strong> for phones as well as tablets. I can&#8217;t tell which Bugs that were, but if you have experienced any improvements, <strong>share it in the comments</strong>! However, the update is free and you might have already got an <strong>update-notification</strong>. Don&#8217;t wait with downloading it!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-news-google-maps-update-to-6-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire News &#8211; Official Wikipedia App released</title>
		<link>http://htcdesireportal.com/htc-desire-news-official-wikipedia-app-released/</link>
		<comments>http://htcdesireportal.com/htc-desire-news-official-wikipedia-app-released/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 18:01:42 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[App]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[webview]]></category>
		<category><![CDATA[Wikimedia]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2390</guid>
		<description><![CDATA[We all have been waiting for it: An official Wikipedia application. Officially released by the Wikimedia Foundation, you&#8217;ll be prepared for the next blackout of Wikipedia with it. It works, even though the page is blacked out (you remember the protest?). Nearly all the Wikipedia applications out there were only so called &#8220;WebViews&#8221;, which just [...]]]></description>
			<content:encoded><![CDATA[<p>We all have been waiting for it: An<strong> official Wikipedia application</strong>. Officially released by the <strong>Wikimedia Foundation</strong>, you&#8217;ll be prepared for the next blackout of Wikipedia with it. It works, even though the page is blacked out (you remember the <a href="http://htcdesireportal.com/htc-desire-news-sopa-webs-freedom-is-in-danger/">protest?</a>).</p>
<p>Nearly all the Wikipedia applications out there were only so called &#8220;WebViews&#8221;, which just displayed you the official <strong>mobile Wikipedia page</strong>. This one is faster, has a share function and an option to save articles for offline viewing.<strong> &#8220;Instant Search&#8221; or &#8220;Live Search&#8221;</strong> (like Google&#8217;s) is implemented too and provides you with fast suggestions. However, the design could use some refurbishment, but is O.K. Anyways, it&#8217;s for free, so you may want to get it as soon as possible. On the <a href="https://market.android.com/details?id=org.wikipedia&amp;feature=search_result" target="_blank">app&#8217;s page in the Android Market </a>it&#8217;s recommended to share ideas and critic on their Twitterpage <a href="https://twitter.com/#!/WikimediaMobile" target="_blank">@WikimediaMobile</a>. Quite userfriendly, isn&#8217;t it?</p>
<p><em>Share your thoughts about the free official Wikipedia app in the comments! </em></p>
<p style="text-align: center;"><a href="http://htcdesireportal.com/wp-content/uploads/2012/01/wikimedia.jpg"><img class="size-full wp-image-2391 aligncenter" title="wikimedia" src="http://htcdesireportal.com/wp-content/uploads/2012/01/wikimedia.jpg" alt="" width="307" height="512" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-news-official-wikipedia-app-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire News &#8211; SOPA, Web&#8217;s Freedom is in Danger</title>
		<link>http://htcdesireportal.com/htc-desire-news-sopa-webs-freedom-is-in-danger/</link>
		<comments>http://htcdesireportal.com/htc-desire-news-sopa-webs-freedom-is-in-danger/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 13:57:28 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[SOPA]]></category>
		<category><![CDATA[Stop Online Piracy Act]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2381</guid>
		<description><![CDATA[Today, I am not in the mood for jokes. This news are neither about the HTC Desires nor about Android. However, it&#8217;s a monumental day, not only for the U.S., probably for the whole future of the &#8220;Internetz&#8221;. The &#8220;Stop Online Piracy Act&#8221; has shown up for the first time in 2011 and was handed [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I am not in the mood for jokes. This news are neither about the HTC Desires nor about Android. However, it&#8217;s a monumental day, not only for the U.S., probably for the whole <strong>future of the &#8220;Internetz&#8221;</strong>.<br />
The &#8220;<strong>Stop Online Piracy Act</strong>&#8221; has shown up for the first time in 2011 and was handed in by the republican delegate Lamar S. Smith.</p>
<p>SOPA is a threat to the freedom of the web. Supported by the &#8220;old media&#8217;s&#8221; corporate groups (e.g. Hollywood), it&#8217;s disguised to protect copyrights, but allows the government to make <strong>sensitive restrictions</strong> to the Internet. Multiple popular webpages like <a href="http://en.wikipedia.org/wiki/Wikipedia:SOPA_initiative">Wikipedia</a>, Reddit and even <a href="http://www.xda-developers.com/sopa/">xda-developers.com</a> have &#8220;gone dark&#8221; for today in order to <strong>raise awareness and to get people involved</strong> (According to <a href="http://sopastrike.com/">sopastrike.com</a> there are over 7,000 pages &#8220;going dark&#8221;!). For further information, Wikipedia has summed up everything, including all recent events concerning the legislation.<a href="http://en.wikipedia.org/wiki/Wikipedia:SOPA_initiative"> (here, click!)</a><br />
Even the White House has released a statement against SOPA after 2 petitions with a total of more than 100,000 votes.</p>
<blockquote><p>Let us be clear—online piracy is a real problem that harms the American economy, and threatens jobs for significant numbers of middle class workers and hurts some of our nation&#8217;s most creative and innovative companies and entrepreneurs. It harms everyone from struggling artists to production crews, and from startup social media companies to large movie studios. While we are strongly committed to the vigorous enforcement of intellectual property rights, existing tools are not strong enough to root out the worst online pirates beyond our borders.</p></blockquote>
<p><em>Source: <a href="https://wwws.whitehouse.gov/petition-tool/response/combating-online-piracy-while-protecting-open-and-innovative-internet">WhiteHouse.gov</a></em></p>
<p>Due to the central role in terms of  internet-structure these restrictions can and will also effect countries outside the U.S. .</p>
<p style="text-align: center;">Google released a statement too and <a href="https://www.google.com/landing/takeaction/">calls for action!</a><br />
<a href="https://www.google.com/landing/takeaction/"><img class="size-full wp-image-2382 aligncenter" title="endpiracynotlibertyGoogle" src="http://htcdesireportal.com/wp-content/uploads/2012/01/endpiracynotlibertyGoogle.png" alt="" width="412" height="54" /></a></p>
<p><em>(Editor&#8217;s note:) Get involved, join the protest! Against <strong>censorship and inhibition of innovation</strong>! Sign as many petitions as you can. For a free Internet!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-news-sopa-webs-freedom-is-in-danger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTC Desire News &#8211; WiFi Fix for ICS</title>
		<link>http://htcdesireportal.com/htc-desire-news-wifi-fix-for-ics/</link>
		<comments>http://htcdesireportal.com/htc-desire-news-wifi-fix-for-ics/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 21:09:27 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Root/Hack]]></category>
		<category><![CDATA[Android 4.0]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[Ice Cream Sandwich]]></category>
		<category><![CDATA[ICS]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[WiFi bug]]></category>
		<category><![CDATA[WiFi Fix]]></category>
		<category><![CDATA[XDA]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2377</guid>
		<description><![CDATA[To several Android 4.0 (Ice Cream Sandwich) &#8211; users a slowed WiFi connection appeared. This is a bug identified to be related to devices with some special country codes on their SIM-cards (e.g. you are using it in your tablet for an internet connection or in your smartphone for internet/telephony/SMS ). XDA-Forummember fardjad recently released [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://htcdesireportal.com/wp-content/uploads/2012/01/wififix.png"><img class="alignleft size-medium wp-image-2378" title="wififix" src="http://htcdesireportal.com/wp-content/uploads/2012/01/wififix-300x57.png" alt="" width="300" height="57" /></a></center></p>
<p>To several <strong>Android 4.0 (Ice Cream Sandwich</strong>) &#8211; users a <strong>slowed WiFi connection</strong> appeared. This is a bug identified to be related to devices with some special <strong>country codes</strong> on their SIM-cards (e.g. you are using it in your tablet for an internet connection or in your smartphone for internet/telephony/SMS ). <a title="fardjad" href="http://forum.xda-developers.com/member.php?u=3887515">XDA-Forummember fardjad</a> recently released an <strong>app which fixxes that bug.</strong> However, this only works for rooted devices, just give the application <strong>&#8220;SuperUser&#8221;-rights to enable it</strong>. You can download the application, as well as updates for free over at <a href="http://forum.xda-developers.com/showthread.php?p=21406675">the XDA-Community (click).</a> You might also want to donate a bit to the developer if the application could help you!</p>
<p><em>Share in the comments if you have experienced such troubles and whether the app helped you or not!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-news-wifi-fix-for-ics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire Root/Hack &#8211; Battery stats</title>
		<link>http://htcdesireportal.com/htc-desire-roothack-battery-stats/</link>
		<comments>http://htcdesireportal.com/htc-desire-roothack-battery-stats/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 20:02:49 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[Root/Hack]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[battery life]]></category>
		<category><![CDATA[batterystats.bin]]></category>
		<category><![CDATA[Diane Hackborn]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[myth]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[su]]></category>
		<category><![CDATA[superuser]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2371</guid>
		<description><![CDATA[There are tons of root apps for it, and many users believe in t as the only truth: Wiping the battery stats in the recovery to enhance your battery life. Google engineer Diane Hackborn busted this myth yesterday. She states that the file batterystats.bin, which gets resetted when &#8220;wiping&#8221; the battery stats, only contains data [...]]]></description>
			<content:encoded><![CDATA[<p>There are tons of root apps for it, and many users believe in t as the only truth: Wiping the battery stats in the recovery to enhance your battery life. <strong><a href="https://plus.google.com/u/0/105051985738280261832/posts/FV3LVtdVxPT">Google engineer Diane Hackborn</a></strong> busted this myth yesterday. She states that the file batterystats.bin, which gets resetted when &#8220;wiping&#8221; the battery stats, only contains data for the <strong>&#8220;Battery Use UI in settings</strong>&#8220;.</p>
<p>To sum up:<strong> Wiping your battery stats</strong>, won&#8217;t help your<strong> battery life</strong> and just make your battery stats more inaccurate. You might want to deinstall the root-app, which <strong>wipes your battery stats, NOW.</strong></p>
<p>To all those of you, who still think it helps: Might it not just be some kind of<strong> Placebo</strong> for you?</p>
<p><em><a href="https://plus.google.com/u/0/105051985738280261832/posts/FV3LVtdVxPT">Read the original post of Diane Hackborn (click!). </a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-roothack-battery-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire Dev News &#8211; Design Guidelines</title>
		<link>http://htcdesireportal.com/htc-desire-dev-news-design-guidelines/</link>
		<comments>http://htcdesireportal.com/htc-desire-dev-news-design-guidelines/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 14:12:10 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[Dev News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Android 4.0]]></category>
		<category><![CDATA[Design Guidelines]]></category>
		<category><![CDATA[Dev news]]></category>
		<category><![CDATA[Holo Theme]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[Ice Cream Sandwich]]></category>
		<category><![CDATA[ICS]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2366</guid>
		<description><![CDATA[One goal of Google&#8217;s latest Android version 4.0 or &#8220;Ice Cream Sandwich&#8221; clearly was to give the users a more consistent using experience. A step to do that, was to merge the visual interfaces of Honeycomb with &#8220;pre-Honeycomb&#8221; to provide the same experience, no matter whether on tablets or handsets. However, that was only the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://htcdesireportal.com/wp-content/uploads/2012/01/android-design.png"><img class="alignleft size-full wp-image-2368" title="android-design" src="http://htcdesireportal.com/wp-content/uploads/2012/01/android-design.png" alt="" width="160" height="147" /></a>One goal of Google&#8217;s latest Android version 4.0 or &#8220;Ice Cream Sandwich&#8221; clearly was to give the users a more consistent using experience. A step to do that, was to merge the visual interfaces of Honeycomb with &#8220;pre-Honeycomb&#8221; to provide the same experience, no matter whether on tablets or handsets. However, that was only the<strong> Operating System</strong>. Most developers still developed their own interfaces and integrated them into their applications.</p>
<p>With Ice Cream Sandwich Google didn&#8217;t only change Android&#8217;s User Interface, but also obliged every OEM to<strong> include the Holo theme</strong> in their customized interfaces, so that developers could use it. <a href="http://htcdesireportal.com/htc-desire-dev-news-holo-everywhere-clarification/">(We reported!)</a></p>
<p>The (pretty obvious ) next step, just happened: Google published <a href="http://developer.android.com/design/index.html"><strong>Design Guidelines for Android applications</strong>.</a> For beginners or senior developers &#8220;<strong><a href="http://developer.android.com/design/index.html">http://developer.android.com/design/index.html</a></strong>&#8221; provides several very useful principles and tipps for designing their application&#8217;s interfaces.</p>
<p>Still, there is one thing I am missing: I really like<strong> Android 4.0 ICS</strong>, but to be realistic: It won&#8217;t be widespread very soon. Maybe in one or one and a half year developers are seriously able to develope with the<strong> target API 14 (Android 4.0)</strong>, what to do until then? Build 2 nearly completely different interfaces: one for FroYo/Gingerbread and one for ICS? <strong>Downward-compability</strong> is mentioned in the guidelines, but not really satisfying in my opinion.</p>
<p><em>What&#8217;s your opinion? How do you solve the issues of Android&#8217;s different device-resolutions, sizes, versions? Share them in the comments!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-dev-news-design-guidelines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire News &#8211; Google Search Update</title>
		<link>http://htcdesireportal.com/htc-desire-news-google-search-update-2/</link>
		<comments>http://htcdesireportal.com/htc-desire-news-google-search-update-2/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 21:34:41 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[android page]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Search]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2361</guid>
		<description><![CDATA[Very, very, very fresh news directly from Google: An update for Google&#8217;s search application has just released for all devices with Android 2.2 or later. It should give: &#8220;- Faster, smoother performance, with an updated and simplified user interface. - Suggestions for your search grouped by type, with web suggestions at the top. - Country-specific [...]]]></description>
			<content:encoded><![CDATA[<p>Very, very, very fresh news directly from Google: An update for<strong> Google&#8217;s search applicatio</strong>n has just released for all devices with <strong>Android 2.2 or later.</strong></p>
<p>It should give:</p>
<p>&#8220;- Faster, smoother performance, with an updated and simplified user interface.<br />
- Suggestions for your search grouped by type, with web suggestions at the top.<br />
- Country-specific suggestions and search results for all countries with Google domains.<br />
- Long press to remove history items.&#8221; <a href="https://plus.google.com/104629412415657030658/posts/PtGNZtJL3Rq" target="_blank">(Source: official Android-page on Google+) </a></p>
<p>Furthermore, the blogger gave some <strong>quick tips</strong>:</p>
<p>-You can add a suggestion to your search terms by simply clicking the arrow right of it, before searching.<br />
-You are able to get suggestions from apps (which support that function), just check out searchable items in Search settings.<br />
- You can add the Google Search widget to your home screen by long pressing it (if you don&#8217;t have it already).</p>
<p>To download the update, just hit your<strong> Android Market</strong> and <strong>update the &#8220;Google Search&#8221;</strong> application! (It is usually preinstalled).</p>
<p><a href="http://htcdesireportal.com/wp-content/uploads/2012/01/SearchScreenshot.png"><img class="aligncenter size-full wp-image-2362" title="SearchScreenshot" src="http://htcdesireportal.com/wp-content/uploads/2012/01/SearchScreenshot.png" alt="" width="180" height="301" /></a></p>
<p>Thanks <a href="https://plus.google.com/104629412415657030658/posts/PtGNZtJL3Rq" target="_blank">Google Android Google+ page! </a></p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-news-google-search-update-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Desire Root / Hack  &#8211; CyanogenMod AppStore for Rootapps?</title>
		<link>http://htcdesireportal.com/htc-desire-root-hack-cyanogenmod-appstore-for-rootapps/</link>
		<comments>http://htcdesireportal.com/htc-desire-root-hack-cyanogenmod-appstore-for-rootapps/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 19:26:15 +0000</pubDate>
		<dc:creator>Aeefire</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Root/Hack]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[cyanogen]]></category>
		<category><![CDATA[CyanogenMod]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[HTC Desire]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[Rom]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://htcdesireportal.com/?p=2356</guid>
		<description><![CDATA[CyanogenMod has a huge team of voluntary developers, who provide tons of usually the best built customROMs for lots of devices. With growing impact on the community, they also need more money to be able to afford the server capacities and maybe one or two coffees a day (coffein, that what really flows to a [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://htcdesireportal.com/wp-content/uploads/2012/01/CMsmooth.png"><img class="size-full wp-image-2357 alignleft" title="CMsmooth" src="http://htcdesireportal.com/wp-content/uploads/2012/01/CMsmooth.png" alt="" width="200" height="200" /></a>CyanogenMod</strong> has a huge team of voluntary developers, who provide <strong>tons of usually the best built customROMs</strong> for lots of devices. With growing impact on the community, they also need more money to be able to afford the server capacities and maybe one or two coffees a day (coffein, that what really flows to a developer&#8217;s veins). Due to this <strong>lack of money</strong> the team came up with the idea of developing and providing a market with root applications. Like every &#8220;Market-provider&#8221; they&#8217;d just take<strong> something like 10%</strong> of the app-developer&#8217;s income and use it for their future projects. Great idea, isn&#8217;t it? Furthermore, this market wouldn&#8217;t only be available to <strong>CyanogenROMs,</strong> but also to every other ROM.</p>
<p><a title="CyanogenMarket on G+" href="https://plus.google.com/117962666888533781522/posts/XAvX7WUWedy" target="_blank">Click here for the original post on G+! </a></p>
<p>What&#8217;s your opinion? Do you like the idea? <em>Share your thoughts in the comments! </em></p>
]]></content:encoded>
			<wfw:commentRss>http://htcdesireportal.com/htc-desire-root-hack-cyanogenmod-appstore-for-rootapps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

