<?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>Events &#8211; Wiebe Elsinga</title>
	<atom:link href="http://wiebe-elsinga.com/blog/category/events/feed/" rel="self" type="application/rss+xml" />
	<link>http://wiebe-elsinga.com/blog</link>
	<description>Blog</description>
	<lastBuildDate>Fri, 20 Mar 2015 21:17:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8</generator>
	<item>
		<title>Droidcon Tunisia</title>
		<link>http://wiebe-elsinga.com/blog/droidcon-tunisia/</link>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Fri, 20 Mar 2015 14:17:44 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Droidcon]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1698</guid>

					<description><![CDATA[Two weeks ago I got invited to attend the Droidcon Tunisia. During this two day conference I got to meet so many passionate android developers. During the course of two days I gave two talks and one workshop. The workshop &#8220;Prototype your Mobile UX design&#8221; was intended to show participants how to prototype an Android application. 100 participants attended this 2 hour workshop, and I was really impressed by the skill level they presented. Thank you all.]]></description>
										<content:encoded><![CDATA[<p>Two weeks ago I got invited to attend the <a href="http://www.droidcon.tn/" title="Droidcon Tunisia" target="_blank">Droidcon Tunisia</a>.<br />
During this two day conference I got to meet so many passionate android developers. </p>
<p>During the course of two days I gave two talks and one workshop. The workshop &#8220;Prototype your Mobile UX design&#8221; was intended to show participants how to prototype an Android application. 100 participants attended this 2 hour workshop, and I was really impressed by the skill level they presented.</p>
<p>Thank you all.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Android Testing Support Library announced</title>
		<link>http://wiebe-elsinga.com/blog/android-testing-support-library-announced/</link>
					<comments>http://wiebe-elsinga.com/blog/android-testing-support-library-announced/#comments</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Mon, 03 Nov 2014 03:39:42 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Functional testing]]></category>
		<category><![CDATA[Support library]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1608</guid>

					<description><![CDATA[During the Droidcon UK 2014, Stephan Linzner of Google announced the upcoming Android Testing Support Library. This means Google is (finally) taking testing Android apps seriously. The library is a unbundled static testing library for Android that containers all Android testing frameworks by Google. It will become a available through the Android Support repository and as open source in AOSP. So what does it contain? AndroidJUnitRunner This Runner, based on android.test.InstrumentationTestRunner, runs JUnit3 and JUnit4 tests against an Android package (application). Let me give an example: @RunWith &#40;JUnit4.class&#41; public class MyJUnit4Test &#123; &#123; &#160; Droidcon mDroidconUK; &#160; &#160; @Before &#160; public void setUp&#40;&#41; &#123; &#160; &#160; mDroidconUK = new Droidcons.get&#40;Droidcon.UK&#41;; &#160; &#160; mDroidconUK.open&#40;&#41;; &#160; &#125; &#160; @Test &#160; public void checkPreconditions&#40;&#41; &#123; &#160; &#160; assertNotNull&#40;&#34;mDroidconUK cannot be null&#34;, mDroidconUK&#41;; &#160; &#125; &#160; @After &#160; public void tearDown&#40;&#41; &#123; &#160; &#160; mDroidconUK.close&#40;&#41;; &#160; &#125; &#125; Espresso Introduced at the GTAC in 2013, Espresso makes it possible to write concise, beautiful, and reliable Android UI tests quickly. Lets look at some examples: // Find view using a Matcher and type text using a ViewAction onView&#40;withId&#40;R.id.message_edit_text&#41;&#41;.perform&#40;typeText&#40;TEXT_MESSAGE&#41;, closeSoftKeyboard&#40;&#41;&#41;; // Perform a click ViewAction onView&#40;withId&#40;R.id.send_button&#41;&#41;.perform&#40;click&#40;&#41;&#41;; // Verify using a ViewAssertion onView&#40;withId&#40;R.id.received_message_text_view&#41;&#41;.check&#40;matches&#40;withText&#40;&#40;TEXT_MESSAGE&#41;&#41;&#41;&#41;; Intento Intento is like Mockito but for Intents. Basically a mock framework that allows you to create and configure mock objects. Let me give you an example: public void testDailerInput_typeNumberAndCall&#40;&#41; &#123; &#160; &#160; //Type phonenumber in dialer &#160; onView&#40;withId&#40;R.id.send_data_to_call_edit_text&#41;&#41;.perform&#40;scrollTo&#40;&#41;, typeText&#40;&#34;123-345-6789&#34;&#41;, closeSoftKeyboard&#40;&#41;&#41;; &#160; &#160; // Click the call button &#160; onView&#40;withId&#40;R.id.send_to_call_button&#41;&#41;.perform&#40;scrollTo&#40;&#41;, click&#40;&#41;&#41;; &#160; &#160; //Validate Intent has been send &#160; intended&#40;allOf&#40; &#160; &#160; &#160; hasAction&#40;Intent.ACTION_CALL&#41;, &#160; &#160; &#160; toPackage&#40;&#34;com.android.phone&#34;&#41;, &#160; &#160; &#160; hasData&#40;allOf&#40;hasSchemaSpecificPart&#40;&#34;tel&#34;, &#34;123-345-6789&#34;&#41;&#41;&#41;&#41;, &#160; &#160; &#160; times&#40;1&#41;&#41;; &#125; In conclusion: Testing with Android is finally becoming a more prominent part of Android Development cycle with the introduction of the Android Testing Support Library]]></description>
										<content:encoded><![CDATA[<p>During the <a href="http://uk.droidcon.com/2014/" title="Droidcon UK 2014" target="_blank">Droidcon UK 2014</a>, <a href="https://plus.google.com/+StephanLinzner" title="StephanLinzner G+ Profile" target="_blank">Stephan Linzner</a> of Google announced the upcoming Android Testing Support Library. This means Google is (finally) taking testing Android apps seriously. </p>
<p>The library is a unbundled static testing library for Android that containers all Android testing frameworks by Google. It will become a available through the Android Support repository and as open source in AOSP.</p>
<p>So what does it contain?</p>
<ul>
<li><em><strong>AndroidJUnitRunner</strong></em><br />
This Runner, based on <em>android.test.InstrumentationTestRunner</em>, runs <em>JUnit3</em> and <em>JUnit4</em> tests against an Android package (application). Let me give an example:</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:100%;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">@RunWith <span style="color: #009900;">&#40;</span>JUnit4.<span style="color: #000000; font-weight: bold;">class</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> MyJUnit4Test <span style="color: #009900;">&#123;</span><br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; Droidcon mDroidconUK<span style="color: #339933;">;</span><br />
&nbsp;<br />
&nbsp; @Before <br />
&nbsp; <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> setUp<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; mDroidconUK <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Droidcons.<span style="color: #006633;">get</span><span style="color: #009900;">&#40;</span>Droidcon.<span style="color: #006633;">UK</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; mDroidconUK.<span style="color: #006633;">open</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #009900;">&#125;</span><br />
<br />
&nbsp; @Test <br />
&nbsp; <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> checkPreconditions<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; assertNotNull<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;mDroidconUK cannot be null&quot;</span>, mDroidconUK<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #009900;">&#125;</span><br />
<br />
&nbsp; @After <br />
&nbsp; <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> tearDown<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; mDroidconUK.<span style="color: #006633;">close</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #009900;">&#125;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
<p>
</li>
<li><em><strong>Espresso</strong></em><br />
Introduced at the GTAC in 2013, Espresso makes it possible to write concise, beautiful, and reliable Android UI tests quickly. Lets look at some examples:</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;"><span style="color: #666666; font-style: italic;">// Find view using a Matcher and type text using a ViewAction</span><br />
onView<span style="color: #009900;">&#40;</span>withId<span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">id</span>.<span style="color: #006633;">message_edit_text</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">perform</span><span style="color: #009900;">&#40;</span>typeText<span style="color: #009900;">&#40;</span>TEXT_MESSAGE<span style="color: #009900;">&#41;</span>, closeSoftKeyboard<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #666666; font-style: italic;">// Perform a click ViewAction</span><br />
onView<span style="color: #009900;">&#40;</span>withId<span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">id</span>.<span style="color: #006633;">send_button</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">perform</span><span style="color: #009900;">&#40;</span>click<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #666666; font-style: italic;">// Verify using a ViewAssertion</span><br />
onView<span style="color: #009900;">&#40;</span>withId<span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">id</span>.<span style="color: #006633;">received_message_text_view</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">check</span><span style="color: #009900;">&#40;</span>matches<span style="color: #009900;">&#40;</span>withText<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>TEXT_MESSAGE<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>
</li>
<li><em><strong>Intento</strong></em><br />
Intento is like Mockito but for Intents. Basically a mock framework that allows you to create and configure mock objects. Let me give you an example:</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> testDailerInput_typeNumberAndCall<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; <br />
&nbsp; <span style="color: #666666; font-style: italic;">//Type phonenumber in dialer</span><br />
&nbsp; onView<span style="color: #009900;">&#40;</span>withId<span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">id</span>.<span style="color: #006633;">send_data_to_call_edit_text</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">perform</span><span style="color: #009900;">&#40;</span>scrollTo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, typeText<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;123-345-6789&quot;</span><span style="color: #009900;">&#41;</span>, closeSoftKeyboard<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <br />
&nbsp; <span style="color: #666666; font-style: italic;">// Click the call button</span><br />
&nbsp; onView<span style="color: #009900;">&#40;</span>withId<span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">id</span>.<span style="color: #006633;">send_to_call_button</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">perform</span><span style="color: #009900;">&#40;</span>scrollTo<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>, click<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <br />
&nbsp; <span style="color: #666666; font-style: italic;">//Validate Intent has been send</span><br />
&nbsp; intended<span style="color: #009900;">&#40;</span>allOf<span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; hasAction<span style="color: #009900;">&#40;</span>Intent.<span style="color: #006633;">ACTION_CALL</span><span style="color: #009900;">&#41;</span>,<br />
&nbsp; &nbsp; &nbsp; toPackage<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;com.android.phone&quot;</span><span style="color: #009900;">&#41;</span>,<br />
&nbsp; &nbsp; &nbsp; hasData<span style="color: #009900;">&#40;</span>allOf<span style="color: #009900;">&#40;</span>hasSchemaSpecificPart<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;tel&quot;</span>, <span style="color: #0000ff;">&quot;123-345-6789&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>,<br />
&nbsp; &nbsp; &nbsp; times<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
</li>
</ul>
<p>
<strong>In conclusion</strong>: Testing with Android is finally becoming a more prominent part of Android Development cycle with the introduction of the Android Testing Support Library</p>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/android-testing-support-library-announced/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>GDG Playground Thessaloniki, Greece</title>
		<link>http://wiebe-elsinga.com/blog/gdg-playground-thessaloniki-greece/</link>
					<comments>http://wiebe-elsinga.com/blog/gdg-playground-thessaloniki-greece/#respond</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Mon, 29 Sep 2014 00:15:57 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[GDG]]></category>
		<category><![CDATA[Greece]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1562</guid>

					<description><![CDATA[Two weeks ago got invited to Greece where I represented the Thessaloniki Google Developer Group and spoke about mobile UX design at the Google Developer Group Playground. The GDG Playground in Thessaloniki attracted 7000 attendees an over a hundred speakers: http://thess.gdgplayground.org/about-us/. During the course of three days I gave a talk about prototyping your mobile application, and I gave a workshop about mobile UX design. Also I had the chance to explain Google Glass (being a Glass Explorer) to all visitors and Greek politicians. &#160; Τα λέμε την επόμενη φορά]]></description>
										<content:encoded><![CDATA[<p>Two weeks ago got invited to Greece where I represented the Thessaloniki Google Developer Group and spoke about mobile UX design at the Google Developer Group Playground.<br />
The GDG Playground in Thessaloniki attracted 7000 attendees an over a hundred speakers: <a href="http://thess.gdgplayground.org/about-us/" target="_blank">http://thess.gdgplayground.org/about-us/</a>.</p>
<p>During the course of three days I gave a talk about prototyping your mobile application, and I gave a workshop about mobile UX design. Also I had the chance to explain Google Glass (being a Glass Explorer) to all visitors and Greek politicians.</p>
<p>&nbsp;</p>
<p style="text-align: left;">
<p style="text-align: center;"><strong><em>Τα λέμε την επόμενη φορά</em></strong></p>
<p style="text-align: center;">
<p><iframe loading="lazy" width="980" height="551" src="http://www.youtube.com/embed/3pt1jH0QMvk?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/gdg-playground-thessaloniki-greece/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Doing the open source thingy</title>
		<link>http://wiebe-elsinga.com/blog/doing-the-open-source-thingy/</link>
					<comments>http://wiebe-elsinga.com/blog/doing-the-open-source-thingy/#respond</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Sat, 26 Oct 2013 02:51:24 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[droidconNL]]></category>
		<category><![CDATA[open source]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1499</guid>

					<description><![CDATA[Did you miss my talk about doing the open source thingy at the Droidcon The Netherlands, or you just want to see the slides again. Doing the open source thingy from Wiebe Elsinga]]></description>
										<content:encoded><![CDATA[<p>Did you miss my talk about doing the open source thingy at the <a href="http://www.droidcon.nl/" target="_blank">Droidcon The Netherlands</a>, or you just want to see the slides again.<br />
<center><iframe loading="lazy" src="http://www.slideshare.net/slideshow/embed_code/28600980" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe> </p>
<div style="margin-bottom:5px"> <strong> <a href="https://www.slideshare.net/welsinga/doing-the-open-source-thingy" title="Doing the open source thingy" target="_blank">Doing the open source thingy</a> </strong> from <strong><a href="http://www.slideshare.net/welsinga" target="_blank">Wiebe Elsinga</a></strong> </div>
<p></center><br />
</a></p>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/doing-the-open-source-thingy/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>DroidconES 2012</title>
		<link>http://wiebe-elsinga.com/blog/droidcones-2012/</link>
					<comments>http://wiebe-elsinga.com/blog/droidcones-2012/#respond</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Sun, 18 Nov 2012 07:33:07 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[droidconES]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1228</guid>

					<description><![CDATA[Just a brief post to say that I will be talking at DroidCon Spain on 7th December in Murcia, Spain. This is what I will be covering: Prototypes can be a great way to improve mobile software development project results on two fronts: they can prove a concept or improve on it, and they can teach the development team valuable lessons about the best ways to develop the product. This session will provide practical information about the approach and experiences implementing prototyping inside a mobile software development process]]></description>
										<content:encoded><![CDATA[<p>Just a brief post to say that I will be talking at <a href="http://es.droidcon.com/">DroidCon Spain</a> on 7th December in Murcia, Spain. This is what I will be covering:<br />
<span id="more-1228"></span></p>
<blockquote><p>Prototypes can be a great way to improve mobile software development project results on two fronts: they can prove a concept or improve on it, and they can teach the development team valuable lessons about the best ways to develop the product. This session will provide practical information about the approach and experiences implementing prototyping inside a mobile software development process</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/droidcones-2012/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Recap DroidconUK 2012</title>
		<link>http://wiebe-elsinga.com/blog/droidconuk-2012/</link>
					<comments>http://wiebe-elsinga.com/blog/droidconuk-2012/#comments</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Sat, 27 Oct 2012 03:04:28 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[DroidconUK]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1216</guid>

					<description><![CDATA[So my trip to the Droidcon UK is coming to an end. It has been a great two days. Droidcon UK brought together key players in the Android Mobile industry and 1000+ talented developers and designers to discuss the best of business, design, and development on the Android platform. It’s Europe’s largest Android Developer event! Day one was Barcamp day, an ‘unconference’-style day where attendees where invited to present short talks based on their professional interests. Besides a talk about &#8220;Device fragmentation, done the right way&#8221; which a colleague of mine gave, one of the best talks was given by Bitbar about a product called testdroid. Have a look at one of their products. Day two was the conference day. It featured talks from industry experts alongside large Android players such as Google, Facebook and Sony. Great talk where given by Mark Murphy (CommonsWare), Cyril Mottier (Prixing) on the Fly-in app, Matt Gaunt (Google) on developing for Google TV, Corey Latislaw (Chariot Solutions) on Fragments, and Simon Cross (Facebook) on Open Graph. This year’s event coincides with the 5th anniversary of the launch of Android, So celebrate this special milestone, they organized an Android hackathon. In conclusion a great event, and hope I&#8217;ll be back next year.]]></description>
										<content:encoded><![CDATA[<p>So my trip to the <a title="droidconUK" href="http://uk.droidcon.com/" target="_blank">Droidcon UK</a> is coming to an end. It has been a great two days. Droidcon UK brought together key players in the Android Mobile industry and 1000+ talented developers and designers to discuss the best of business, design, and development on the Android platform. It’s Europe’s largest Android Developer event!</p>
<p><strong>Day one</strong> was Barcamp day, an ‘unconference’-style day where attendees where invited to present short talks based on their professional interests.<br />
Besides a talk about &#8220;<a title="Device fragmentation" href="http://itudemobiledev.files.wordpress.com/2011/10/presentation-device-fragmentation-strategies.pdf" target="_blank">Device fragmentation, done the right way</a>&#8221; which a colleague of mine gave, one of the best talks was given by <a title="BitBar" href="http://testdroid.com/" target="_blank">Bitbar</a> about a product called <strong>testdroid</strong>. Have a <a title="Web crawler" href="http://youtu.be/eYvhyjf7HoY" target="_blank">look</a> at one of their products.</p>
<p><strong>Day two</strong> was the conference day. It featured talks from industry experts alongside large Android players such as Google, Facebook and Sony.<br />
Great talk where given by <a href="http://commonsware.com/mmurphy" target="_blank">Mark Murphy</a> (CommonsWare), <a href="http://android.cyrilmottier.com/" target="_blank">Cyril Mottier</a> (Prixing) on the Fly-in app, <a href="http://www.gauntface.co.uk/" target="_blank">Matt Gaunt</a> (Google) on developing for Google TV, <a href="https://twitter.com/corey_latislaw" target="_blank">Corey Latislaw</a> (Chariot Solutions) on Fragments, and <a href="https://twitter.com/sicross" target="_blank">Simon Cross</a> (Facebook) on Open Graph.</p>
<p>This year’s event coincides with the 5th anniversary of the launch of Android, So celebrate this special milestone, they organized an Android hackathon.</p>
<p>In conclusion a great event, and hope I&#8217;ll be back next year.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/droidconuk-2012/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Visit to Google London</title>
		<link>http://wiebe-elsinga.com/blog/visit-to-google-london/</link>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Wed, 15 Aug 2012 08:11:24 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[London.]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1156</guid>

					<description><![CDATA[As part of my trip to London during the DroidconUK, I will visit the Google London office.]]></description>
										<content:encoded><![CDATA[<p>As part of my trip to London during the <a href="http://uk.droidcon.com/" title="Droidcon London" target="_blank">DroidconUK</a>, I will visit the Google London office.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>&#8220;V Hack Android&#8221; Netherlands</title>
		<link>http://wiebe-elsinga.com/blog/v-hack-android-netherlands/</link>
					<comments>http://wiebe-elsinga.com/blog/v-hack-android-netherlands/#respond</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Wed, 15 Aug 2012 07:52:28 +0000</pubDate>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[DutchAUG]]></category>
		<category><![CDATA[Hackathon]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=1142</guid>

					<description><![CDATA[On November 5th Android will celebrate its 5th birthday. To celebrate this Google developer- and technology user group leaders in Europe have announced the &#8220;V Hack Android&#8221; hackathon (pronounced &#8220;We Hack Android&#8221;). &#8220;V Hack Android&#8221; Dutch edition I&#8217;m happy to announce that together with the Dutch Android User Group, Google Developer Group Netherlands and Appsterdam.rs I&#8217;m organizing the Dutch edition of this international hackathon where teams of exactly 3 people (2 Android developers and 1 UI/UX expert) will work on a new Android app in a to-be-announced theme. So what to expect.. The &#8220;V Hack Android&#8221; Netherlands hackathon will be held in the weekend of Friday 14th &#8211; Sunday 16th of September. Preliminary schedule (subject to change) Friday 19:00 &#8211; 21:00 Opening scrum with drinks &#38; snacks Saturday 10:00 Opening hackathon day 1 13:00 Lunch 18:00 Dinner Sunday 10:00 Opening hackathon day 2 13:00 Lunch 16:00 Demo&#8217;s and votes 18:00 Drinks and snacks The winning Dutch team will be chosen by an independent jury. After this weekend the winning team can request support of the whole Dutch Android community to improve their app! Help spread the word &#160;]]></description>
										<content:encoded><![CDATA[<p>On November 5th Android will celebrate its 5th birthday. To celebrate this Google developer- and technology user group leaders in Europe have announced the <a title="" href="http://vhackandroid.org/" target="_blank">&#8220;V Hack Android&#8221; hackathon</a> (pronounced &#8220;We Hack Android&#8221;).</p>
<h4>&#8220;V Hack Android&#8221; Dutch edition</h4>
<p>I&#8217;m happy to announce that together with the <a title="The Dutch Android User Group" href="http://www.dutchaug.org/" target="_blank">Dutch Android User Group</a>, <a title="Google Developer Group Netherlands" href="https://plus.google.com/109146411236228596892" target="_blank">Google Developer Group Netherlands</a> and <a title="Appsterdam.rs" href="http://appsterdam.rs/" target="_blank">Appsterdam.rs</a> I&#8217;m organizing the Dutch edition of this international hackathon where teams of exactly 3 people (2 Android developers and 1 UI/UX expert) will work on a new Android app in a to-be-announced theme.</p>
<h4>So what to expect..</h4>
<p>The &#8220;V Hack Android&#8221; Netherlands hackathon will be held in the weekend of Friday 14th &#8211; Sunday 16th of September.</p>
<p>Preliminary schedule (subject to change)</p>
<p><em>Friday</em></p>
<ul>
<li>19:00 &#8211; 21:00 Opening scrum with drinks &amp; snacks</li>
</ul>
<p><em>Saturday</em></p>
<ul>
<li>10:00 Opening hackathon day 1</li>
<li>13:00 Lunch</li>
<li>18:00 Dinner</li>
</ul>
<p><em>Sunday</em></p>
<ul>
<li>10:00 Opening hackathon day 2</li>
<li>13:00 Lunch</li>
<li>16:00 Demo&#8217;s and votes</li>
<li>18:00 Drinks and snacks</li>
</ul>
<p>The winning Dutch team will be chosen by an independent jury. After this weekend the winning team can request support of the whole Dutch Android community to improve their app!</p>
<p style="text-align: center;"><em><strong>Help spread the word</strong></em></p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/v-hack-android-netherlands/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MWC 2012</title>
		<link>http://wiebe-elsinga.com/blog/mwc-2012/</link>
					<comments>http://wiebe-elsinga.com/blog/mwc-2012/#comments</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Thu, 09 Feb 2012 02:48:15 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[mwc]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=974</guid>

					<description><![CDATA[From the 26th of February to the 1st of March 2012 I&#8217;ll be at the Mobile World Congress in Barcelona. Hall 2.1 is dedicated entirely to Apps and promises to be the most interesting part of this exhibition which hosted over 50000 visitors last year. I welcome you to drop by and have a chat at stand 2.1E67.]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" src="http://www.itude.com/images/itude_files_images/Mobile/Origineel/mwc2011/IMG_0603%20banner.jpg" alt="MWC" width="563" height="214" /></p>
<p>From the 26th of February to the 1st of March 2012 I&#8217;ll be at the Mobile World Congress in Barcelona. Hall 2.1 is dedicated entirely to Apps and promises to be the most interesting part of this exhibition which hosted over 50000 visitors last year. I welcome you to drop by and have a chat at stand 2.1E67.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/mwc-2012/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Droidcon NL, an impression</title>
		<link>http://wiebe-elsinga.com/blog/droidcon-nl-an-impression/</link>
					<comments>http://wiebe-elsinga.com/blog/droidcon-nl-an-impression/#comments</comments>
		
		<dc:creator><![CDATA[W.Elsinga]]></dc:creator>
		<pubDate>Fri, 25 Nov 2011 00:40:50 +0000</pubDate>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Amsterdam]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[droidconNL]]></category>
		<category><![CDATA[event]]></category>
		<guid isPermaLink="false">http://wiebe-elsinga.com/blog/?p=937</guid>

					<description><![CDATA[It&#8217;s been a wonderful and exciting two days of enjoying the first ever Droidcon in the Netherlands. Not only did I talk to a lot of people about the DutchAUG, I also had the chance to give a presentation about &#8220;Prototyping your Android application&#8221;. Let me give you some of the highlights of droidconNL. Introduction DutchAUG Before the keynote was given, Johan Pelgrim (@jowipe), announced the formation of the Dutch Android User group. Besides the fact that I&#8217;m co-organizer, it&#8217;s important to join this group because of the power that a community can give to an individual. Source: Jaime Visser Nick Butcher (Google) Nick Butcher (@crafty) is an Android Developer Advocate, working at Google&#8217;s London office. He reminded us, Android Developers, that the time of creating wonderful Android apps is over, they need to be awesome. During his opening keynote and while talking about ICS, he gave a demo about Android Beam, and it worked (always exiting, a live demo). Source: stevechippy Jens Mücke (Xing) Jens Mücke (@jensmuecke) is a Senior Software Engineer at XING. He gave an inside view on how to become a Mobile company. I must say, not all points mentioned I can concur, but it&#8217;s always interesting to hear other companies talk about their strategy. Novoda Novoda (@novoda) is an Android consultancy company based in London. Presenters Jamie McDonald, Luigi Agosti, Carl-Gustaf Harroch and Gonçalo Silva gave a talk about using Continuous Integration. It’s funny to see that they have the same setup as we, ItudeMobile, use. I must thank them because they helped me with one problem I had with Jenkins. Me And than it was my turn to talk about prototyping. Thanks everybody for attending my talk.  Source: Jaime Visser Christine Karman Christine Karman (@Xtien) is a Senior Software Engineer. She described, by way of clear code examples the use of RoboGuice. Great presentation. Richard Hyndman Richard Hyndman (@geekyouup) also an Android Developer Advocate, working at Google&#8217;s London office. He took the audience on a journey. Starting at the beginning of this year, telling how well Android is doing, until what the future holds for Android. Conclusion For the first ever droidcon in Amsterdam, they have done their best to make a good first impression. Some tweaking still needs to be done, but will be there next year. For enyone that&#8217;s interested in my talk, here&#8217;s my presentation]]></description>
										<content:encoded><![CDATA[<p>It&#8217;s been a wonderful and exciting two days of enjoying the first ever Droidcon in the Netherlands. Not only did I talk to a lot of people about the <a title="Dutch Android Usergroup" href="http://www.dutchaug.org/" target="_blank">DutchAUG</a>, I also had the chance to give a presentation about &#8220;Prototyping your Android application&#8221;. Let me give you some of the highlights of droidconNL.</p>
<h4>Introduction DutchAUG</h4>
<p>Before the keynote was given, Johan Pelgrim (@jowipe), announced the formation of the <a title="Dutch Android Usergroup" href="http://www.dutchaug.org/" target="_blank">Dutch Android User group</a>. Besides the fact that I&#8217;m co-organizer, it&#8217;s important to join this group because of the power that a community can give to an individual.</p>
<p><img loading="lazy" class="aligncenter" src="https://lh3.googleusercontent.com/-u7NFwlTNmVo/Ts86Vtp5dMI/AAAAAAAAAfQ/I_dwDzo9O64/s1024/IMG_6053.JPG" alt="" width="460" height="307" /></p>
<p style="text-align: right;"><small><strong>Source:</strong> Jaime Visser<br />
</small></p>
<h4>Nick Butcher (Google)</h4>
<p>Nick Butcher (@crafty) is an Android Developer Advocate, working at Google&#8217;s London office. He reminded us, Android Developers, that the time of creating wonderful Android apps is over, they need to be awesome. During his opening keynote and while talking about ICS, he gave a demo about Android Beam, and it worked (always exiting, a live demo).</p>
<p style="text-align: center;"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/5C0P3yJuQXs&amp;rel=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/5C0P3yJuQXs&amp;rel=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p style="text-align: right;"><small><strong>Source: </strong><a href="http://www.youtube.com/user/stevechippy">stevechippy</a></small></p>
<h4>Jens Mücke (Xing)</h4>
<p>Jens Mücke (@jensmuecke) is a Senior Software Engineer at XING. He gave an inside view on how to become a Mobile company. I must say, not all points mentioned I can concur, but it&#8217;s always interesting to hear other companies talk about their strategy.</p>
<h4>Novoda</h4>
<p>Novoda (@novoda) is an Android consultancy company based in London. Presenters Jamie McDonald, Luigi Agosti, Carl-Gustaf Harroch and Gonçalo Silva gave a talk about using Continuous Integration. It’s funny to see that they have the same setup as we, <a title="ItudeMobile" href="http://www.itude.com/en/home" target="_blank">ItudeMobile</a>, use. I must thank them because they helped me with one problem I had with Jenkins.</p>
<h4>Me</h4>
<p>And than it was my turn to talk about prototyping. Thanks everybody for attending my talk.</p>
<p><img loading="lazy" class="aligncenter" src="https://lh4.googleusercontent.com/-ddScjZCH__Q/Ts86tVQn9RI/AAAAAAAAAfs/WA0WpBjQmfo/s1024/IMG_6222.JPG" alt="" width="460" height="307" /></p>
<p style="text-align: right;"> <small><strong>Source:</strong> Jaime Visser</small></p>
<h4>Christine Karman</h4>
<p>Christine Karman (@Xtien) is a Senior Software Engineer. She described, by way of clear code examples the use of RoboGuice. Great presentation.</p>
<h4>Richard Hyndman</h4>
<p>Richard Hyndman (@geekyouup) also an Android Developer Advocate, working at Google&#8217;s London office. He took the audience on a journey. Starting at the beginning of this year, telling how well Android is doing, until what the future holds for Android.</p>
<h4>Conclusion</h4>
<p>For the first ever droidcon in Amsterdam, they have done their best to make a good first impression. Some tweaking still needs to be done, but will be there next year. For enyone that&#8217;s interested in my talk, here&#8217;s my <a href="http://www.slideshare.net/welsinga/droidcon-10316763">presentation</a></p>
]]></content:encoded>
					
					<wfw:commentRss>http://wiebe-elsinga.com/blog/droidcon-nl-an-impression/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
