<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>BlackBerry Developer Blog &#187; Luca Filigheddu</title>
	<atom:link href="http://devblog.blackberry.com/author/lfiligheddu/feed/" rel="self" type="application/rss+xml" />
	<link>http://devblog.blackberry.com</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 19:49:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='devblog.blackberry.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/9ef0a66c09615fa946c4179662398878?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>BlackBerry Developer Blog &#187; Luca Filigheddu</title>
		<link>http://devblog.blackberry.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://devblog.blackberry.com/osd.xml" title="BlackBerry Developer Blog" />
	<atom:link rel='hub' href='http://devblog.blackberry.com/?pushpress=hub'/>
		<item>
		<title>How to replace Google Maps with OpenStreet Maps in your BlackBerry 10 Android App</title>
		<link>http://devblog.blackberry.com/2013/03/android-map-blackberry-10/</link>
		<comments>http://devblog.blackberry.com/2013/03/android-map-blackberry-10/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 16:33:10 +0000</pubDate>
		<dc:creator>Luca Filigheddu</dc:creator>
				<category><![CDATA[Android Development]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Android Runtime]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[realtime]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=13736</guid>
		<description><![CDATA[On our developer website, we provide a seamless solution consisting of replacing the Google Maps library for Android with a web view integrating the web version of Google Maps. More information can be found by following this link. That said, a fellow Italian developer (the maker of Prezzi Benzina), just sent me detailed information on [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=13736&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<div id="attachment_14140" class="wp-caption aligncenter" style="width: 413px"><a href="http://rimdevblog.files.wordpress.com/2013/03/gps-is-wrong.jpg"><img class="size-full wp-image-14140" alt="TITLE_IMAGE" src="http://rimdevblog.files.wordpress.com/2013/03/gps-is-wrong-e1363192251868.jpg?w=403&#038;h=336" width="403" height="336" /></a><p class="wp-caption-text">Image from <a href="http://failblog.cheezburger.com/" target="_blank">http://failblog.cheezburger.com/</a></p></div>
<p>On our developer website, we provide a seamless solution consisting of replacing the Google Maps library for Android with a web view integrating the web version of Google Maps. More information can be found by following <a href="http://developer.blackberry.com/android/apisupport/apisupport_mapping_support.html" target="_new">this link</a>.</p>
<p>That said, a fellow Italian developer (the maker of <a href="http://www.prezzibenzina.it/" target="_blank">Prezzi Benzina</a>), just sent me detailed information on how they easily replaced Google Maps with <a href="http://www.openstreetmap.org/" target="_new">Open Street Maps</a>, a free worldwide map providing open data under the ODBL (<a href="http://opendatacommons.org/licenses/odbl/" target="_new">Open Data Commons Open Database License</a>).</p>
<p>The result? Outstanding! And since it is a very common issue faced by many Android developers making use of Google Maps in their Android applications, we wanted to share in this blog how they did it.</p>
<p><span id="more-13736"></span></p>
<h3><strong>Download</strong></h3>
<p>First of all, you must download the Open Street Maps library from the following link: <a href="https://code.google.com/p/osmdroid/" target="_new">https://code.google.com/p/osmdroid/</a></p>
<p>You can either download the <strong>jar</strong> ready to use <a href="https://code.google.com/p/osmdroid/downloads/detail?name=osmdroid-android-3.0.8.jar&amp;can=2&amp;q=" target="_new">osmdroid-android-3.0.8.jar</a> or download the source code and compile it (<span style="text-decoration:underline;">recommended</span>).</p>
<h3><strong>Step 1: Layout Change</strong></h3>
<p>Pretty easy. You code goes from</p>
<pre>&lt;com.google.android.maps.MapView
        android:id="@+id/mapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="@+string/mapviewkey"
        android:clickable="true" /&gt;</pre>
<p><strong>to</strong></p>
<pre>&lt;org.osmdroid.views.MapView
        android:id="@+id/mapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" /&gt;</pre>
<p>Unlike Google Maps, no key is needed for OSM.</p>
<p><strong>Step 2: Modify Import</strong></p>
<p>Most class names remain the same, so it’s very straight forward..</p>
<p>Your code goes from:</p>
<pre>import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;</pre>
<p><strong>to</strong></p>
<pre>import org.osmdroid.util.GeoPoint;
import org.osmdroid.views.MapController;
import org.osmdroid.views.MapView;</pre>
<p>In addition, you might want to add the following:</p>
<pre>import org.osmdroid.views.overlay.ItemizedIconOverlay;
import org.osmdroid.views.overlay.ItemizedIconOverlay.OnItemGestureListener;
import org.osmdroid.views.overlay.OverlayItem;
import org.osmdroid.views.overlay.OverlayManager;
import org.osmdroid.views.overlay.mylocation.GpsMyLocationProvider;
import org.osmdroid.views.overlay.mylocation.MyLocationNewOverlay;</pre>
<p><strong>WARNING: resources</strong></p>
<p>The default class for resources is: DefaultResourceProxyImpl. It handles English only, so you probably have to create your own with the proper translations.</p>
<pre>    ResourceProxyImpl resProxyImp = new ResourceProxyImpl(this);</pre>
<h3><strong>Step 3: Map Customization</strong></h3>
<p>From</p>
<pre>mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
mMyLocationOverlay = new MyLocationOverlay(this, mapView);
mapView.getOverlays().add(mMyLocationOverlay);</pre>
<p><strong>to</strong></p>
<pre>mapView = (MapView) findViewById(R.id.mapview);
mapView.setUseSafeCanvas(false);
//enable zoom controls
mapView.setBuiltInZoomControls(true);

//enable multitouch
mapView.setMultiTouchControls(true);
//GpsMyLocationProvider can be replaced by your own class. It provides the position information through GPS or Cell towers.
GpsMyLocationProvider imlp = new GpsMyLocationProvider(this.getBaseContext());
//minimum distance for update
imlp.setLocationUpdateMinDistance(1000);
//minimum time for update
imlp.setLocationUpdateMinTime(60000);       
mMyLocationOverlay = new MyLocationNewOverlay(this.getBaseContext(),imlp , mapView, resProxyImp);
mMyLocationOverlay.setUseSafeCanvas(false);
mMyLocationOverlay.setDrawAccuracyEnabled(true);

mapView.getOverlays().add(mMyLocationOverlay);</pre>
<h3><strong>Step 4: Add Marker</strong></h3>
<p>In OSMDroid there are some classes ready to use. The best is ItemizedIconOverlay.</p>
<p>Create an overlay and add it to the map:</p>
<pre>ItemizedIconOverlay markersOverlay = new ItemizedIconOverlay(new LinkedList(), myMarker, null, resProxyImp);
mapView.getOverlays().add(markersOverlay);
Add markers
OverlayItem ovm = new OverlayItem("titolo", "descrizione", new GeoPoint(s.LatitudeE6(), s.LongitudeE6()));
ovm.setMarker(myMarker);
markersOverlay.addItem(ovm);</pre>
<p>Of course, this is just the basic part of the story. There is much more available on OSMDroid &#8211; feel free to explore and bring your Android app to BlackBerry 10 easily!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/13736/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/13736/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=13736&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2013/03/android-map-blackberry-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d5f08858996f1a3f396417883f8d8a70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lfiligheddu</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2013/03/gps-is-wrong-e1363192251868.jpg" medium="image">
			<media:title type="html">TITLE_IMAGE</media:title>
		</media:content>
	</item>
		<item>
		<title>Count.ly Realtime Mobile App Analytics Is Now Available For BlackBerry 10</title>
		<link>http://devblog.blackberry.com/2013/02/count-ly-blackberry-10/</link>
		<comments>http://devblog.blackberry.com/2013/02/count-ly-blackberry-10/#comments</comments>
		<pubDate>Mon, 18 Feb 2013 14:48:57 +0000</pubDate>
		<dc:creator>Luca Filigheddu</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[realtime]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=13812</guid>
		<description><![CDATA[Last year, in December, during the BlackBerry Jam we ran in Istanbul thanks to the support of the local BlackBerry team, I had the pleasure of meeting with Görkem Çetin, founder of Count.ly, a mobile app analytics platform. Görkem is pretty popular in the Open Source community in Turkey and I was very happy he [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=13812&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Last year, in December, during the BlackBerry Jam we ran in Istanbul thanks to the support of the local BlackBerry team, I had the pleasure of meeting with Görkem Çetin, founder of <a href="http://count.ly/" target="_blank">Count.ly</a>, a mobile app analytics platform. Görkem is pretty popular in the Open Source community in Turkey and I was very happy he decided to attend our event.</p>
<p>What’s Count.ly? It is a real-time mobile analytics platform that shows information by using eye-catching visual elements. Görkem provided me with a test account and after logging in, I was very impressed by what I saw. The UI is gorgeus and the amount of useful and critical information a dev can get about their app is impressive.</p>
<p>Moreover, it&#8217;s an <b>open-source project </b>in which the team aims to discuss the future of Count.ly in an open, democratic environment. They offer the developers the opportunity to take part in the community, to send bug reports, feature requests, to provide fixes and best practices. It collects data from mobile phones, and visualizes this information to analyze mobile application usage and end-user behavior.</p>
<p><span id="more-13812"></span></p>
<p>Having the ability to see how your users behave is critical for the success of an app. Developers can get a clear picture on what’s working well and what’s not working, what their users like the most, what the least/most used feature is and, last but not least, how much time people spend in your app and doing what.</p>
<p>When we met, BlackBerry 10 was not supported yet, but they were very interested in investing in our new upcoming platform (after the conference, even more!) and for that reason, twenty days after, they finally published their first SDKs for BlackBerry 10.</p>
<p>What’s so special with Count.ly?</p>
<ul>
<li>It has a <b>dashboard</b>
<ul>
<li>where you stay up to date</li>
<li>where you can easily monitor your data with graphics</li>
<li>which shows you <b>everything at once</b> with no need to dig in several pages</li>
<li>where you can track <b>unlimited number of applications</b> and switch between your apps, games and ebooks</li>
</ul>
</li>
</ul>
<p><a href="http://rimdevblog.files.wordpress.com/2013/02/countly1.png"><img class="aligncenter size-full wp-image-13813" alt="TITLE_IMAGE" src="http://rimdevblog.files.wordpress.com/2013/02/countly1.png?w=604&#038;h=386" width="604" height="386" /></a></p>
<ul>
<li>It has a special <b>user behaviour stats </b>experience in which;
<ul>
<li>you can track and visualize your users&#8217; behaviours</li>
<li>you can see your application&#8217;s <b>in-app performance</b></li>
<li>you can understand your customer&#8217;s behaviour and <b>where user left off</b></li>
<li>you can observe your players closely to ensure success and maximize your online game revenue</li>
</ul>
</li>
</ul>
<ul>
<li>You can <b>build better apps, games and ebooks</b>;
<ul>
<li>by measuring and evaluating mobile app engagement as it enables optimization of mobile content</li>
<li>by exploring where a spike occurs and by personalizing and optimizing your app according to stats</li>
<li>by the help of the support that Countly offers for leading smartphones (iOS, Android, Windows Phone and BlackBerry)</li>
</ul>
</li>
</ul>
<ul>
<li>You can produce <b>electronic reports</b> with <b>customizable charts</b> and tables, showing how your application performed for a given period, add / remove pages through report generator.</li>
</ul>
<p>Also, Count.ly is free. You can install Count.ly in-app analytics tool on your server to track unlimited number of mobile applications, if you want.</p>
<p>Here is what Onu Alp, Soner, co-founder of Count.ly, told me:</p>
<p>&#8220;The best feature of Count.ly is custom events: we help developers identify in-app purchase patterns, defining the best flow for payment. This is a crucial factor towards maximizing revenues in e-books and games. We are thrilled with what BlackBerry provides in their next-gen mobile OS, and decided to invest in BlackBerry 10 SDK. Being the most complete open source, real-time mobile analytics app in the world, we believe Count.ly will provide a lot of value for BlackBerry 10 developers&#8221;</p>
<p>If you are a BlackBerry 10 developer looking for a good option for in-app analytics, Count.ly is definitely a great choice. The team is also very accessible and happy to help if needed.</p>
<p>You can download the <a href="https://github.com/Countly/countly-sdk-blackberry-webworks">Countly WebWorks SDK from GitHub here</a>, while the <a href="https://github.com/craigmj/countly-sdk-blackberry10-cascades">Cascades SDK can be download from here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/13812/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/13812/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=13812&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2013/02/count-ly-blackberry-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d5f08858996f1a3f396417883f8d8a70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lfiligheddu</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2013/02/countly1.png" medium="image">
			<media:title type="html">TITLE_IMAGE</media:title>
		</media:content>
	</item>
		<item>
		<title>Buffer now available for BlackBerry 10</title>
		<link>http://devblog.blackberry.com/2013/01/buffer-blackberry-10/</link>
		<comments>http://devblog.blackberry.com/2013/01/buffer-blackberry-10/#comments</comments>
		<pubDate>Fri, 25 Jan 2013 14:24:22 +0000</pubDate>
		<dc:creator>Luca Filigheddu</dc:creator>
				<category><![CDATA[Android Development]]></category>
		<category><![CDATA[BlackBerry World]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[BlackBerry 10 app]]></category>
		<category><![CDATA[Buffer]]></category>
		<category><![CDATA[cross-posting]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[porting]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=13217</guid>
		<description><![CDATA[Leo and Joel from Buffer are definitely two smart guys. We’ve never met in person, but have been in touch for more than a year in regards to their beautiful service, Buffer. What’s Buffer? Well, the name speaks for itself &#8211; it’s a service that allows you to send your status updates to a buffer [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=13217&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://twitter.com/leowid" target="_new">Leo</a> and <a href="http://twitter.com/joelgascoigne">Joel</a> from <a href="http://bufferapp.com/" target="_new">Buffer</a> are definitely two smart guys. We’ve never met in person, but have been in touch for more than a year in regards to their beautiful service, <a href="http://www.bufferapp.com" target="_new">Buffer</a>.</p>
<p>What’s Buffer? Well, the name speaks for itself &#8211; it’s a service that allows you to send your status updates to a buffer in order to post them to multiple social networks at once and stagger these posts throughout the day. This way, you won’t flood your followers/social media friends with tons of posts all at once. More importantly, you can choose the time of day that you want the posts to be published, in order to have the best visibility in terms of audience.</p>
<p>You can even keep track of the number of retweets, likes and clicks that your posts get. Smart, right?</p>
<p style="text-align:center;"><img alt="" src="http://rimdevblog.files.wordpress.com/2013/01/devblogbufferpic1.jpg?w=180" /> <img alt="" src="http://rimdevblog.files.wordpress.com/2013/01/devblogpic2.jpg?w=180" /></p>
<p><span id="more-13217"></span></p>
<p>After they launched the service more than a year ago, they built an app for iOS and Android that quickly became successful.</p>
<p>A few weeks ago, I contacted them again to inform them about my new adventure here at RIM and to ask them about the possibility of porting Buffer to BlackBerry 10. They are not a big company, so they need to prioritize tasks and were very busy at the time. One option was to <a href="http://devblog.blackberry.com/2011/12/android-aggregator-submit-apps-blackberry/" target="_new">port their Android app to BlackBerry 10</a> and then to plan the development of a native Cascades version later.</p>
<p>I am happy to announce that as of last week, Buffer was made available for <a href="http://appworld.blackberry.com/webstore/content/20385669/?lang=en" target="_new">download from BlackBerry World.</a></p>
<p>Do you think that 24 hours after publication, and given that BlackBerry 10 devices are not commercially available yet, we could impact their service? Well, apparently, YES!</p>
<p>Here is what Leo says:</p>
<p><i>&#8220;Converting Buffer to the new BlackBerry 10 platform couldn&#8217;t have been any easier. It took us less than one day to do so and it was running super smoothly immediately. Seeing hundreds of downloads within days and great reviews too was an incredibly overwhelming response from our userbase.&#8221;</i><br />
<i>&#8220;Being part of the new BlackBerry 10 platform is super exciting for us. What few people know is that BlackBerry users are the second largest mobile traffic for Buffer, even before Android. So being able to provide a slick app in such a hassle free way made our life extremely easy. And, a large part of our userbase is a lot happier and more productive. Happy Buffering from BlackBerry! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8220;</i></p>
<p>Impressive, right? I really recommend giving Buffer a try &#8211; the BlackBerry 10 app in conjunction with their browser extensions is a killer social media weapon!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/13217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/13217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=13217&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2013/01/buffer-blackberry-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d5f08858996f1a3f396417883f8d8a70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lfiligheddu</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2013/01/devblogbufferpic1.jpg?w=180" medium="image" />

		<media:content url="http://rimdevblog.files.wordpress.com/2013/01/devblogpic2.jpg?w=180" medium="image" />
	</item>
		<item>
		<title>How A BlackBerry Dev Group Can Make A Developer Event A Success</title>
		<link>http://devblog.blackberry.com/2012/12/blackberry-dev-group-balkans/</link>
		<comments>http://devblog.blackberry.com/2012/12/blackberry-dev-group-balkans/#comments</comments>
		<pubDate>Wed, 19 Dec 2012 15:25:17 +0000</pubDate>
		<dc:creator>Luca Filigheddu</dc:creator>
				<category><![CDATA[BlackBerry Jam]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Interviews/Thought Leadership]]></category>
		<category><![CDATA[#BlackBerry10]]></category>
		<category><![CDATA[Balkans]]></category>
		<category><![CDATA[BlackBerry 10 Jam]]></category>
		<category><![CDATA[BlackBerry developer groups]]></category>
		<category><![CDATA[Evangelist]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=12447</guid>
		<description><![CDATA[Hedone Design is definitely not a new name for BlackBerry users. They&#8217;ve been very popular since 2008 for their great themes that let BlackBerry users completely change the look and feel of their beloved BlackBerry OS smartphones. A few weeks ago I was lucky to finally meet the CEO and Founder of Hedone Design, Branko [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=12447&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.hedonedesign.com">Hedone Design</a> is definitely not a new name for BlackBerry users. They&#8217;ve been very popular since 2008 for their great themes that let BlackBerry users completely change the look and feel of their beloved BlackBerry OS smartphones.</p>
<p>A few weeks ago I was lucky to finally meet the CEO and Founder of Hedone Design, Branko Nikolic. Branko took the opportunity to create a <a href="https://www.facebook.com/BBDevBalkan" target="_blank">BlackBerry Developer Group</a> in his home region of the Balkans. Branko worked with our Developer Relations team to setup the first event for BlackBerry developers in the Balkans: a &#8220;mini&#8221; BlackBerry 10 Jam in Maribor, the second biggest town in Slovenia.</p>
<p style="text-align:center;"><img class="aligncenter  wp-image-12777" alt="TITLE_IMAGE" src="http://rimdevblog.files.wordpress.com/2012/12/devblog-luca.png?w=530&#038;h=307" width="530" height="307" /></p>
<p>Why &#8220;mini&#8221;? Well, there is a reason for that&#8230; but it turned out to be everything but &#8220;mini&#8221;! The event took place at <a href="http://www.feri.uni-mb.si/podrocje.aspx" target="_blank">Feri</a>, a local university, and everything was organized perfectly &#8211; from the invitations for developers, to the badges, to the video interviews, the sessions&#8230; everything. Over 170 developers were there to listen to our sessions about BlackBerry 10 architecture and development tools. A few local devs also showcased what they developed already, with also a presentation by a local dev company, Codeten. Also, it&#8217;s worth mentioning the great (and funny!) presentation made by Dennis Reumer, who runs another <a href="https://www.facebook.com/BBDevGroupNL" target="_blank">BlackBerry Developer Group in the Netherlands</a>.</p>
<p>Last but not least, Branko organized a party for us and for the developers, transforming a popular club in Maribor into a fully-fledged BlackBerry club. Everything inside, from the waiter&#8217;s t-shirts to the DJ console (using a PlayBook, of course) was branded BlackBerry. Devs were more than happy and the first surveys demonstrate that now devs in Slovenia (mostly Android developers) are more willing to develop for the BlackBerry 10 platform than ever before.</p>
<p>In short: praises to Branko and his team for the incredible job! I am looking forward to looking at apps from developers in the Balkans showing up in BlackBerry World.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/12447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/12447/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=12447&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2012/12/blackberry-dev-group-balkans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d5f08858996f1a3f396417883f8d8a70?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lfiligheddu</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/12/devblog-luca.png" medium="image">
			<media:title type="html">TITLE_IMAGE</media:title>
		</media:content>
	</item>
	</channel>
</rss>
