<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: No Android Army</title>
	<atom:link href="http://tech.puredanger.com/index.php/2007/11/13/no-android-army/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.puredanger.com/2007/11/13/no-android-army/</link>
	<description>Alex Miller&#039;s technical blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:39:50 -0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>By: Thoughts on Computing &#187; Blog Archive &#187; Android Clouds Drifting In &#8230;</title>
		<link>http://tech.puredanger.com/2007/11/13/no-android-army/comment-page-1/#comment-24446</link>
		<dc:creator>Thoughts on Computing &#187; Blog Archive &#187; Android Clouds Drifting In &#8230;</dc:creator>
		<pubDate>Fri, 01 Feb 2008 04:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/11/13/no-android-army/#comment-24446</guid>
		<description>[...] Alex Miller (Terracotta) observed (as did I) that probably wasn&#8217;t enough &#8230; sure it would be cool at first blush, but what would we really gain? Just cycles? And? [...]</description>
		<content:encoded><![CDATA[<p>[...] Alex Miller (Terracotta) observed (as did I) that probably wasn&#8217;t enough &#8230; sure it would be cool at first blush, but what would we really gain? Just cycles? And? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Miller - Mobile grid apps</title>
		<link>http://tech.puredanger.com/2007/11/13/no-android-army/comment-page-1/#comment-21963</link>
		<dc:creator>Alex Miller - Mobile grid apps</dc:creator>
		<pubDate>Fri, 18 Jan 2008 08:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/11/13/no-android-army/#comment-21963</guid>
		<description>[...] In the wake of Google Android, people from three different grid vendors have written about mobile grids: me from Terracotta, Bob Lozano from Appistry, and Nikita Ivanov from GridGain. I think Bob and I both had the reaction of&#8230;&#8221;cool, but what would you do with it?&#8221; [...]</description>
		<content:encoded><![CDATA[<p>[...] In the wake of Google Android, people from three different grid vendors have written about mobile grids: me from Terracotta, Bob Lozano from Appistry, and Nikita Ivanov from GridGain. I think Bob and I both had the reaction of&#8230;&#8221;cool, but what would you do with it?&#8221; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://tech.puredanger.com/2007/11/13/no-android-army/comment-page-1/#comment-16298</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 03 Dec 2007 14:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/11/13/no-android-army/#comment-16298</guid>
		<description>@Carl: Yeah, we use ASM and Aspectwerkz now and you could definitely get most of the way there via compile-time modification and weaving.  But I suspect there are still things we would need to hook at runtime.  Might be an interesting experiment someday.</description>
		<content:encoded><![CDATA[<p>@Carl: Yeah, we use ASM and Aspectwerkz now and you could definitely get most of the way there via compile-time modification and weaving.  But I suspect there are still things we would need to hook at runtime.  Might be an interesting experiment someday.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl Rosenberger</title>
		<link>http://tech.puredanger.com/2007/11/13/no-android-army/comment-page-1/#comment-16287</link>
		<dc:creator>Carl Rosenberger</dc:creator>
		<pubDate>Mon, 03 Dec 2007 12:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/11/13/no-android-army/#comment-16287</guid>
		<description>Hi Alex,

we have a very similar issue around modifying class files for &lt;a href=&quot;http://www.db4o.com&quot; rel=&quot;nofollow&quot;&gt;db4o&lt;/a&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/Native_Queries&quot; rel=&quot;nofollow&quot;&gt;Native Queries&lt;/a&gt; but I think there is a very easy solution:

Why don&#039;t you modify class files at compile time, before they get deployed to Android?

If you take a look at an Android project in Eclipse, there are four builders:
&quot;Android Resource Manager&quot;
&quot;Android Pre Compiler&quot;
&quot;Java Builder&quot;
&quot;Android Package Builder&quot;

I haven&#039;t tried this yet myself but I would suppose that you could hook your own builder in there in the right place to modify class files before they get deployed to the emulator or the device.

If you are on the lookout for a library to modify class files: We are quite happy with using bloat. Other possible choices would be ASM, BCEL and Serp.</description>
		<content:encoded><![CDATA[<p>Hi Alex,</p>
<p>we have a very similar issue around modifying class files for <a href="http://www.db4o.com" rel="nofollow">db4o</a> <a href="http://en.wikipedia.org/wiki/Native_Queries" rel="nofollow">Native Queries</a> but I think there is a very easy solution:</p>
<p>Why don&#8217;t you modify class files at compile time, before they get deployed to Android?</p>
<p>If you take a look at an Android project in Eclipse, there are four builders:<br />
&#8220;Android Resource Manager&#8221;<br />
&#8220;Android Pre Compiler&#8221;<br />
&#8220;Java Builder&#8221;<br />
&#8220;Android Package Builder&#8221;</p>
<p>I haven&#8217;t tried this yet myself but I would suppose that you could hook your own builder in there in the right place to modify class files before they get deployed to the emulator or the device.</p>
<p>If you are on the lookout for a library to modify class files: We are quite happy with using bloat. Other possible choices would be ASM, BCEL and Serp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 59 23 * * 0 flush &#187; לפגוש אנדרואיד סלולרי</title>
		<link>http://tech.puredanger.com/2007/11/13/no-android-army/comment-page-1/#comment-15493</link>
		<dc:creator>59 23 * * 0 flush &#187; לפגוש אנדרואיד סלולרי</dc:creator>
		<pubDate>Tue, 27 Nov 2007 09:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/11/13/no-android-army/#comment-15493</guid>
		<description>[...] Alex Miller - No Android Army: סיכום מ-וו-ת-ק של אלכס מילר על אנדרואיד(גוגל, סלולר, פלטפורמה גנרית), כולל פגישה עם בוב לי, הוונדערקיד שמאחורי ג&#8217;וס(כמו גם אנדרואיד, מסתברא), ואוסף לינקים משכנע. [...]</description>
		<content:encoded><![CDATA[<p>[...] Alex Miller &#8211; No Android Army: סיכום מ-וו-ת-ק של אלכס מילר על אנדרואיד(גוגל, סלולר, פלטפורמה גנרית), כולל פגישה עם בוב לי, הוונדערקיד שמאחורי ג&#8217;וס(כמו גם אנדרואיד, מסתברא), ואוסף לינקים משכנע. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

