<?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>Open Handset Magazine &#187; adb</title>
	<atom:link href="http://openhandsetmagazine.com/tag/adb/feed/" rel="self" type="application/rss+xml" />
	<link>http://openhandsetmagazine.com</link>
	<description></description>
	<lastBuildDate>Thu, 30 Jun 2011 20:24:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Tips: How to install apk files on Android Emulator</title>
		<link>http://openhandsetmagazine.com/2008/01/tips-how-to-install-apk-files-on-android-emulator/</link>
		<comments>http://openhandsetmagazine.com/2008/01/tips-how-to-install-apk-files-on-android-emulator/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 19:09:19 +0000</pubDate>
		<dc:creator>Hatem Ben Yacoub</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[adb]]></category>
		<category><![CDATA[Android application]]></category>
		<category><![CDATA[apk]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[install apk]]></category>
		<category><![CDATA[uninstall apk]]></category>

		<guid isPermaLink="false">http://openhandsetmagazine.com/2008/01/tips-how-to-install-apk-files-on-android-emulator/</guid>
		<description><![CDATA[If you are new to Android and looking for a way to test some of the currently available Android applications, here is how to proceed : First get the Android SDK and unzip it somewhere on your hard drive Add SDK_ROOT to your system variables pointing to /tools folder under the sdk Run the emulator [...]]]></description>
			<content:encoded><![CDATA[<p>If you are new to Android and looking for a way to test some of the currently available Android applications, here is how to proceed :</p>
<ol>
<li>First get the Android SDK and unzip it somewhere on your hard drive</li>
<li>Add SDK_ROOT to your system variables pointing to /tools folder under the sdk</li>
<li>Run the emulator</li>
<li>Copy the apk file to /tools folder</li>
<li>Change directory to /tools and run from commandline <em>$adb install your_application.apk</em></li>
<li>Now check applications list in the emulator and you should see the new application installed and ready.</li>
</ol>
<p>Some pointed me to the error message when running adb on windows : * deamon still not running * error: no device.</p>
<p>In this case try to shutdown adb server and start it manually using :<br />
<em>$adb kill-server</em><br />
<em>$adb start-server</em></p>
<p>You can test if deamon is working by running $adb shell</p>
<p>The uninstall procedure is</p>
<p><em>$adb shell rm your_application.apk</em></p>
<p>Hope this help, enjoy !</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fopenhandsetmagazine.com%2F2008%2F01%2Ftips-how-to-install-apk-files-on-android-emulator%2F&amp;title=Tips%3A%20How%20to%20install%20apk%20files%20on%20Android%20Emulator" id="wpa2a_2"><img src="http://openhandsetmagazine.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://openhandsetmagazine.com/2008/01/tips-how-to-install-apk-files-on-android-emulator/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Second Android SDK Update m3-rc37a</title>
		<link>http://openhandsetmagazine.com/2007/12/second-android-sdk-update-m3-rc37a/</link>
		<comments>http://openhandsetmagazine.com/2007/12/second-android-sdk-update-m3-rc37a/#comments</comments>
		<pubDate>Sat, 15 Dec 2007 07:34:18 +0000</pubDate>
		<dc:creator>Hatem Ben Yacoub</dc:creator>
				<category><![CDATA[Android SDK]]></category>
		<category><![CDATA[Challenge]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[adb]]></category>
		<category><![CDATA[challenge]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[HVGA]]></category>
		<category><![CDATA[sms]]></category>

		<guid isPermaLink="false">http://openhandsetmagazine.com/2007/12/second-android-sdk-update-m3-rc37a/</guid>
		<description><![CDATA[In the latest interview, Brendan mentioned that SDK releases have slowed down and here is today the official Android blog announcing the immediate availability of the new release m3-rc37a. Highlited features in this release : The ability to inject SMS messages into the emulator, which will allow you to more easily test IntentReceivers for incoming [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://openhandsetmagazine.com/2007/12/developer-interview-with-brendan-burns-droiddraw-and-android-gl/">the latest interview</a>, Brendan mentioned that SDK releases have slowed down and here is today the official Android blog announcing the <a href="http://android-developers.blogspot.com/2007/12/life-can-be-tough-here-are-few-sdk.html">immediate availability of the new release m3-rc37a</a>. Highlited features in this release :</p>
<ul>
<li>The ability to <strong>inject SMS messages into the emulator</strong>, which will allow you to more easily test IntentReceivers for incoming SMS messages (Telnet to Android then run: sms senderPhoneNumber senderPhoneNumber)</li>
<li>Android Debug Bridge <strong>(ADB) supports multiple emulators on one host computer</strong></li>
<li>The <strong>audio problem with the emulator on Windows should be fixed</strong></li>
<li>There&#8217;s a new emulator control panel that you can use to control network events like radio state changes and incoming calls.</li>
<li>The <strong>Eclipse plugin</strong> now does <strong>color syntax highlighting on the XML files</strong>, such as AndroidManifest.xml</li>
<li>The <strong>new default skin for the emulator is HVGA, portrait mode</strong>. That&#8217;s the one you should focus on for your submissions for the <strong>Android Developer Challenge</strong>.</li>
</ul>
<p style="text-align: center"><img src="http://openhandsetmagazine.com/wp-content/uploads/2007/12/application_not_responding.png" alt="Android SDK Application not responding" /></p>
<p>It seems there are problems with  com.google.android.providers.media in this release, others are reporting that many applications are not running such  contacts, maps, browser and even Xmpp settings. Here all applications are working fine and I&#8217;m able to emulate phone call, but not sending sms. We&#8217;ll try to update you as we get more information on the subject.</p>
<p>More changes on the <a href="http://code.google.com/android/RELEASENOTES.html">release notes</a>, and you can <a href="http://code.google.com/android/download.html">download the latest Android SDK release</a> from Google code. Be sure to update the ADT Eclipse Plugin as usual, instructions available for <a href="http://code.google.com/android/intro/upgrading.html">upgrading the SDK</a>.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fopenhandsetmagazine.com%2F2007%2F12%2Fsecond-android-sdk-update-m3-rc37a%2F&amp;title=Second%20Android%20SDK%20Update%20m3-rc37a" id="wpa2a_4"><img src="http://openhandsetmagazine.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://openhandsetmagazine.com/2007/12/second-android-sdk-update-m3-rc37a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

