<?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>Herbert Mühlburger&#039;s Blog &#187; Eclipse</title>
	<atom:link href="http://blog.muehlburger.at/tag/eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.muehlburger.at</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 08:17:48 +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>HowTo set up the Android SDK on Ubuntu for HTC Phones</title>
		<link>http://blog.muehlburger.at/2011/03/12/howto-set-up-the-android-sdk-on-ubuntu-for-htc-phones/</link>
		<comments>http://blog.muehlburger.at/2011/03/12/howto-set-up-the-android-sdk-on-ubuntu-for-htc-phones/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 18:19:18 +0000</pubDate>
		<dc:creator>Herbert Mühlburger</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Android SDK]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[HTC Corporation]]></category>
		<category><![CDATA[Operating system]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.muehlburger.at/?p=1241</guid>
		<description><![CDATA[In this post I will explain how I set up the Android SDK on Ubuntu for my HTC Desire. I first followed the steps for Ubuntu as described in Setting up a Device for Development: With an Android-powered device, you can develop and debug your Android applications just as you would on the emulator. Before you [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div class="wp-caption alignright" style="width: 132px"><a href="http://www.crunchbase.com/company/htc"><img title="Image representing HTC as depicted in CrunchBase" src="http://www.crunchbase.com/assets/images/resized/0001/9198/19198v2-max-450x450.png" alt="Image representing HTC as depicted in CrunchBase" width="122" height="71" /></a><p class="wp-caption-text">Image via CrunchBase</p></div>
</div>
<p>In this post I will explain how I set up the <a class="zem_slink" title="Android SDK" rel="homepage" href="http://developer.android.com/sdk/index.html">Android SDK</a> on Ubuntu for my <a title="HTC Desire" href="http://www.htc.com/de/product/desire/overview.html" target="_blank">HTC Desire</a>.</p>
<p>I first followed the steps for Ubuntu as described in <a title="Setting up a Device for Development" href="http://developer.android.com/guide/developing/device.html#setting-up" target="_blank">Setting up a Device for Development</a>:</p>
<blockquote><p>With an Android-powered device, you can develop and debug your Android applications just as you would on the emulator. Before you can start, there are just a few things to do:</p>
<ol>
<li>Declare your application as &#8220;debuggable&#8221; in your Android Manifest.In Eclipse, you can do this from the <strong>Application</strong> tab when viewing the Manifest (on the right side, set <strong>Debuggable</strong> to <em>true</em>). Otherwise, in the <code>AndroidManifest.xml</code> file, add <code>android:debuggable="true"</code> to the <code>&lt;application&gt;</code> element.</li>
<li>Turn on &#8220;USB Debugging&#8221; on your device.On the device, go to the home screen, press <strong>MENU</strong>, select <strong>Applications</strong> &gt; <strong>Development</strong>, then enable <strong>USB debugging</strong>.</li>
<li>Setup your system to detect your device.
<ul>
<li>If you&#8217;re developing on <a class="zem_slink" title="Ubuntu (operating system)" rel="homepage" href="http://www.ubuntu.com/">Ubuntu Linux</a>, you need to add a rules file that contains a USB configuration for each type of device you want to use for development. Each device manufacturer uses a different vendor ID. The example rules files below show how to add an entry for a single vendor ID (the HTC vendor ID). In order to support more devices, you will need additional lines of the same format that provide a different value for the <code>SYSFS{idVendor}</code> property. For other IDs, see the table of <a href="http://developer.android.com/guide/developing/device.html#VendorIds">USB Vendor IDs</a>, below.
<ol>
<li>Log in as root and create this file: <code>/etc/udev/rules.d/51-android.rules</code>.For Gusty/Hardy/Maverick Meerkat, edit the file to read:<br />
<code>SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666"</code></p>
<p>For Dapper, edit the file to read:<br />
<code>SUBSYSTEM=="usb_device", SYSFS{idVendor}=="0bb4", MODE="0666"</code></li>
<li>Now execute:<br />
<code>chmod a+r /etc/udev/rules.d/51-android.rules</code></li>
</ol>
</li>
</ul>
</li>
</ol>
<p>You can verify that your device is connected by executing <code>adb devices</code> from your SDK <code>platform-tools/</code> directory. If connected, you&#8217;ll see the device name listed as a &#8220;device.&#8221;</p></blockquote>
<p>When I executed <strong><em>adb devices</em></strong> the name of my HTC Desire just looked like &#8220;??????????&#8221;. After executing <strong><em>reload udev</em></strong> then disconnecting and connecting my phone again, everything looked fine. Now I could see the name of my HTC Desire after running <em><strong>adb devices</strong></em>.</p>
<p>Maybe this post helps you in setting up your Android SDK on Ubuntu. If it does please drop me a comment below.</p>
<p>(Thanks to the post of <a title="it-slav.net" href="http://www.it-slav.net/blogs/2010/05/01/hint-howto-get-android-sdk-working-on-ubuntu/" target="_blank">it-slav.net</a>)</p>
<h3 class="zemanta-related-title">Related articles</h3>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://sichent.wordpress.com/2010/11/04/install-android-sdk-and-ndk/">Install Android SDK and NDK</a> (sichent.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://techblissonline.com/android-3-sdk-download/">Download Android 3.0 SDK</a> (techblissonline.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.howtoforge.com/setting-up-an-android-app-build-environment-with-eclipse-android-sdk-phonegap-ubuntu-10.10">Setting Up An Android App Build Environment With Eclipse, Android SDK, PhoneGap (Ubuntu 10.10)</a> (howtoforge.com)</li>
<li class="zemanta-article-ul-li"><a href="http://techblissonline.com/download-android-sdk-install-and-develop/">Download Android SDK, Install and Develop Android Apps</a> (techblissonline.com)</li>
</ul>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/zemified_e.png?x-id=ca4aa06d-094b-478c-b803-969bea0f697f" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.muehlburger.at/2011/03/12/howto-set-up-the-android-sdk-on-ubuntu-for-htc-phones/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JavaFX Links of the Week 1, February 2010</title>
		<link>http://blog.muehlburger.at/2010/02/01/javafx-links-of-the-week-1-february-2010/</link>
		<comments>http://blog.muehlburger.at/2010/02/01/javafx-links-of-the-week-1-february-2010/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 08:20:00 +0000</pubDate>
		<dc:creator>Herbert Mühlburger</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Links of the Week]]></category>
		<category><![CDATA[Oracle Corporation]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[Platform game]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.muehlburger.at/?p=791</guid>
		<description><![CDATA[Today I decided to post regularly interesting JavaFX links of the past week. Thanks to Jonathan Giles for his great posts on &#8220;Java Desktop Links of the Week&#8221;. The JavaFX links are just taken from Jonathan&#8217;s posts in order to build a little JavaFX news archieve on my own blog and to inform my subscribers [...]]]></description>
			<content:encoded><![CDATA[<p>Today I decided to post regularly interesting JavaFX links of the past week. Thanks to <a title="Jonathan Gile's Blog" href="http://jonathangiles.net/blog/" target="_blank">Jonathan Giles</a> for his great posts on &#8220;Java Desktop Links of  the Week&#8221;. The JavaFX links are just taken from Jonathan&#8217;s posts in order to build a little JavaFX news archieve on my own blog and to inform my subscribers on interesting JavaFX news.</p>
<p>Here are the <strong>JavaFX Links of the Week 1, February 2010:</strong></p>
<ul>
<blockquote>
<li><strong>Jim Weaver</strong> sums up the Oracle news this week nice  and succinctly: ‘<a href="http://learnjavafx.typepad.com/weblog/2010/01/oracle-we-will-invest-heavily-in-javafx.html">We  will invest heavily in JavaFX</a>‘.</li>
<li>The JavaFX tutorial has been updated to include a <a href="http://java.sun.com/javafx/1/tutorials/core/dataBinding/">gentler  introduction to data binding and triggers</a>, with a new chapter  devoted exclusively to “the basics”. Also, apparently there are plans to  include a more advanced article discussing this topic also.</li>
<li>Want tabs in your JavaFX application? Well, today’s your lucky day  as <strong>toumaille</strong> has posted exactly this. His <a href="http://jfxstudio.wordpress.com/2010/01/25/say-well-it-come-tabbedpane-v-3/">tabbed  pane control</a> appears to be well thought out, and may be of use to  people out there, certainly until there is an official tab control in  JavaFX.</li>
<li><strong>Drew</strong>, carrying on his investigation into JavaFX and  physics, has put up a JavaFX applet of a very, very simple <a href="http://piliq.com/javafx/?p=1426">platform game using real physics</a>.</li>
<li><strong>Exadel</strong> released a new version of their JavaFX  Plug-In for Eclipse, <a href="http://blog.exadel.com/2010/01/25/exadel-javafx-plug-in-for-eclipse-version-1-2-1-out/">taking  it up to version 1.2.1</a>.</li>
<li><strong>Jim Weaver</strong> introduces an <a href="http://learnjavafx.typepad.com/weblog/2010/01/data-visualisation-by-nik-silver.html">interesting  visualisation</a> developed in JavaFX by <strong>Nik Silver.</strong> You can <a href="http://niksilver.com/guardian-tag-bubbles/">go directly  to the visualisation</a> if you are interested in playing with it.</li>
<li><strong>Simon Morris</strong> has put up a page that contains <a href="http://www.jfxia.com/JFXDemos/">all of the demos</a> he wrote  whilst writing his book ‘JavaFX in Action’.</li>
<li><strong>Pedro Duque Vieira</strong> has written about how he has <a href="http://pixelduke.wordpress.com/2010/01/30/debug-embeded-javafx/">embedded  a JavaFX scene into a Swing application</a>.</li>
<li><strong>Krishna Kishore</strong> has created a JavaFX application  that <a href="http://www.gyanlabs.com/blog/?p=53">grows/animates flowers  onto  the screen</a>. It’s a rather nice effect, and shows the power of  the  language given Krishna admits creating this program just to learn  the  language.</li>
</blockquote>
</ul>
<p>(via <a title="Jonathan Gile's Blog" href="http://jonathangiles.net/blog/?p=728" target="_blank">jonathangiles.net</a>)</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/d3d37150-b9a4-4bc1-9ae0-b2ad3323997a/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=d3d37150-b9a4-4bc1-9ae0-b2ad3323997a" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.muehlburger.at/2010/02/01/javafx-links-of-the-week-1-february-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

