<?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>Rants of a mobile dev &#187; Mobile</title>
	<atom:link href="http://blog.smartcube.co.za/tag/mobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.smartcube.co.za</link>
	<description>Mobile developer ranting about mobile stuff</description>
	<lastBuildDate>Sun, 07 Nov 2010 20:49:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Mxit Isn&#8217;t Android Friendly</title>
		<link>http://blog.smartcube.co.za/2010/03/14/mxit-isnt-android-friendly/</link>
		<comments>http://blog.smartcube.co.za/2010/03/14/mxit-isnt-android-friendly/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 21:55:51 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[mxit]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=197</guid>
		<description><![CDATA[Today I tried out the official Android Mxit client. I was very very disappointed. The inability to press the &#8220;back&#8221; button upsets me. This button is always referred to as back back and never exit. It is part of the Android spec. The reasoning is simple they don&#8217;t want you to background the app?: Pressing [...]]]></description>
			<content:encoded><![CDATA[<p>Today I tried out the official Android <a href="http://mxit.com">Mxit</a> client. I was very very disappointed. The inability to press the &#8220;back&#8221; button upsets me. This button is always referred to as back back and never exit. It is part of the Android spec.</p>
<p>The reasoning is simple they don&#8217;t want you to background the app?: Pressing the back button asks the user &#8220;Logout from MXit&#8221; with the options &#8220;no&#8221; and &#8220;logout&#8221; neither were what I wanted to do.</p>
<p>Fear not Android users there is a work around. Pressing the home button will background the activity and return you to your home screen.</p>
<p><a href="http://mxit.com">Mxit</a> please fix your back button. Thanks</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2010/03/14/mxit-isnt-android-friendly/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Optimizing J2mepolish Build Proccess</title>
		<link>http://blog.smartcube.co.za/2009/08/19/optimizing-j2mepolish-build-proccess/</link>
		<comments>http://blog.smartcube.co.za/2009/08/19/optimizing-j2mepolish-build-proccess/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 07:25:43 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[J2me]]></category>
		<category><![CDATA[J2mepolish]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=173</guid>
		<description><![CDATA[J2mepolish as a build framework is great! I have been using parts of it since before it was in beta. J2mepolish provides different licenses depending on how you use the product now while this can be looked on in a bad light but I quite like the fact that it is open-source as well as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://j2mepolish.org/">J2mepolish</a> as a build framework is great! I have been using parts of it since before it was in beta.</p>
<p>J2mepolish provides different <a href="http://www.j2mepolish.org/cms/leftsection/licensing.html">licenses</a> depending on how you use the product now while this can be looked on in a bad light but I quite like the fact that it is open-source as well as long as you your self release the code under the same license should you wish to release under a different license there are other payed options available. </p>
<p>The build framework is licensed under <a href="http://www.gnu.org/licenses/gpl.html">GPL</a> no matter how you use it.</p>
<p>I have found that the build proccess can be pretty slow and time consuming I have also found that with out obsfication it by default includes ALL classes in the framework include the GUI/Utils. While you don&#8217;t make use of them you aren&#8217;t violating the license it does increase the application size. There are a few tweeks that one can make to their own personal setup to improve this.</p>
<p>Firstly <a href="http://en.wikipedia.org/wiki/TMPFS ">tmpfs</a> and mounting your /build and /dist directory into memory (For debugging only I wouldn&#8217;t mount a full build) You would have to replace the standard build clean target since the standard user <strong>shouldn&#8217;t</strong> have permissions to delete/create tmpfs<br />
Standard:</p>
<blockquote><p>&lt;delete dir=\&quot;dist\&quot; /&gt;</p></blockquote>
<p>Changed</p>
<blockquote><p>
&lt;delete includeemptydirs=\&quot;true\&quot;&gt;<br />
    &lt;fileset dir=\&quot;dist\&quot; includes=\&quot;**/*\&quot; defaultexcludes=\&quot;false\&quot;/&gt;<br />
&lt;/delete&gt;</p></blockquote>
<p>Secondly the since the build proccess includes all the J2mepolish source files by default you should be able to just set <strong>polish.client.source</strong> to a empty directory but it contains a reference <a href="http://www.j2mepolish.org/javadoc/j2me/index.html">Locale</a> which also contains references to other files(Which are not 100% needed unless you actually use the Utilities provided by J2mepolish)</p>
<p>So a simple fix is create a folder structure with /path/to/directory/de/enough/polish/util/Local.java and place this <a href="http://blog.smartcube.co.za/wp-content/uploads/2009/08/Locale.java">Local.java</a> in there.</p>
<p>In the build file or one of the config files set </p>
<blockquote><p>polish.client.source=/path/to/directory</p></blockquote>
<p> and you should be all set. I noticed huge build time improvements but I don&#8217;t currently make sure of the GUI/Utils.</p>
<p>Hope this helps make you more productive. If you have any other tweaks I would love to hear them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/08/19/optimizing-j2mepolish-build-proccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up MMS On Android</title>
		<link>http://blog.smartcube.co.za/2009/07/01/setting-up-mms-on-android/</link>
		<comments>http://blog.smartcube.co.za/2009/07/01/setting-up-mms-on-android/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 07:20:20 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[Vodacom]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=140</guid>
		<description><![CDATA[I have had my G1 for quite some time. When I first got it I added the APN settings for basic Internet. Over the last 2 days I have received 2 mms&#8217;s I kept getting &#8220;Failed to download&#8221; oops I had forgotten to set up the MMS proxy settings. How to get there; Settings -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>I have had my G1 for quite some time. When I first got it I added the <a href="http://en.wikipedia.org/wiki/Access_Point_Name">APN</a> settings for basic Internet.  Over the last 2 days I have received 2 mms&#8217;s I kept getting &#8220;Failed to download&#8221; oops I had forgotten to set up the MMS proxy settings.</p>
<p>How to get there; Settings -&gt; Wireless Controls -&gt; Mobile Networks -&gt; Access Point Names -&gt; (Select One or create one via Menu-&gt;Add APN)<br />
<strong>Correct APN settings:</strong><br />
Vodacom:<br />
Name: Vodacom Internet<br />
APN: Internet<br />
Proxy: Leave blank<br />
Port: Leave blank<br />
UserName: Leave Blank<br />
MMSC: Leave Blank<br />
MMS Proxy: 196.6.128.13 (I had it as mmsc.vodacom4me.co.za but this doens&#8217;t work)<br />
MMS Port: 8080<br />
MMC: 655<br />
MNC: 01<br />
APN Type: Leave Blank</p>
<p>MTN(I haven&#8217;t tested these but they should work):<br />
Name: Internet<br />
APN: Internet<br />
Proxy: Leave blank<br />
Port: Leave blank<br />
UserName: Leave Blank<br />
MMSC: Leave Blank<br />
MMS Proxy: 196.11.240.241<br />
MMS Port: 8080<br />
MMC: 655<br />
MNC: 01<br />
APN Type: Leave Blank</p>
<p>Hope this at least helps some one.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/07/01/setting-up-mms-on-android/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>HTC Creates A Hero</title>
		<link>http://blog.smartcube.co.za/2009/06/29/htc-creates-a-hero/</link>
		<comments>http://blog.smartcube.co.za/2009/06/29/htc-creates-a-hero/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 12:01:12 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Hero]]></category>
		<category><![CDATA[htc]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=138</guid>
		<description><![CDATA[Htc announces their Hero specs on gsmarena. From what I have seen this might be the most user appealing of all the Android HTC phones. It just seems more slick. I read this from engadgetmobile. I had a good chuckle at their linked video]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.htc.com/www/">Htc</a> announces their <a href="http://www.htc.com/www/product/hero/overview.html">Hero</a> specs on <a href="http://www.gsmarena.com/htc_hero-2861.php">gsmarena</a>. </p>
<p>From what I have seen this might be the most user appealing of all the <a href="http://www.android.com/">Android</a> HTC phones. It just seems more slick. </p>
<p>I read this from <a href="http://www.engadgetmobile.com/2009/06/28/htc-hero-up-for-pre-order-on-amazon-uk-429-july-15-delivery">engadgetmobile</a>. I had a good chuckle at their <a href="http://www.youtube.com/watch?v=7f_HsjpSVaI">linked video</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/06/29/htc-creates-a-hero/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sun Unreleases WTK3.0</title>
		<link>http://blog.smartcube.co.za/2009/06/29/sun-unreleases-wtk3-0/</link>
		<comments>http://blog.smartcube.co.za/2009/06/29/sun-unreleases-wtk3-0/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 11:47:13 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Programing]]></category>
		<category><![CDATA[J2me]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Wtk]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=136</guid>
		<description><![CDATA[I have heard alot about how amazing J2me development on their new WTK3.0 is. The reason I say &#8220;have heard&#8221; is I refuse to use/try it until they release the Linux based version. I mean the product wont even run on their own Solaris OS way to go on marketing your own products. The windows [...]]]></description>
			<content:encoded><![CDATA[<p>I have heard alot about how amazing <a href="http://en.wikipedia.org/wiki/Java_Platform,_Micro_Edition">J2me</a> development on their new <a href="http://java.sun.com/javame/downloads/sdk30.jsp">WTK3.0</a> is.</p>
<p>The reason I say &#8220;have heard&#8221; is I refuse to use/try it until they release the <a href="http://en.wikipedia.org/wiki/Linux">Linux</a> based version. I mean the product wont even run on their own <a href="www.sun.com/software/solaris/">Solaris</a> OS way to go on marketing your own products.</p>
<p>The <a href="http://www.glassfit.co.za/">windows</a> version has been out for more ages. I have logged a bug request on their site, I didn&#8217;t get a reply not that I was actually expecting to get one.</p>
<p>Under the <a href="http://java.sun.com/javame/downloads/sdk30.jsp#req">Requirements section</a> &#8220;Windows&#8221; are you kidding me, The guys that have been pushing and that revolutionized <a href="http://en.wikipedia.org/wiki/Cross-platform">cross platform</a> development.</p>
<p>For now at least my beliefs hold strong and I wont touch their shiny new toy until they release a Linux version. &lt;/EndRant&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/06/29/sun-unreleases-wtk3-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best Alarm Clock Ever</title>
		<link>http://blog.smartcube.co.za/2009/06/22/best-alarm-clock-ever/</link>
		<comments>http://blog.smartcube.co.za/2009/06/22/best-alarm-clock-ever/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 07:12:02 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Alarm]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=134</guid>
		<description><![CDATA[I got a G1 a while ago. I have found the Alarm to be pretty lacking in the sense you can&#8217;t change the default Snooze time out from 10mins to any thing else. This is way to long I will have fallen fast asleep by the time the next one goes off and the first [...]]]></description>
			<content:encoded><![CDATA[<p>I got a <a href="http://blog.smartcube.co.za/2009/04/21/i-have-an-droid/">G1 a while ago</a>. I have found the Alarm to be pretty lacking in the sense you can&#8217;t change the default Snooze time out from 10mins to any thing else. This is way to long I will have fallen fast asleep by the time the next one goes off and the first one wont have done any thing.</p>
<p>Luckily <a href="http://www.android.com/">Android</a> is open-source and some one modified the pre-installed alarm to create <a href="http://android.hlidskialf.com/software/alarming">Alarming!</a>. </p>
<p>This new-and-improved alarm functionality allows for a &#8220;Captcha on Dismiss&#8221; this sounds kinda scary but really it is amazing! Often I will press the dismiss button instead of snooze and over sleep this makes it much harder by having to press random buttons on the screen to deactivate the alarm. See the image one their <a href="http://android.hlidskialf.com/software/alarming">home page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/06/22/best-alarm-clock-ever/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mxit Attempt packaging</title>
		<link>http://blog.smartcube.co.za/2009/05/14/mxit-attempt-packaging/</link>
		<comments>http://blog.smartcube.co.za/2009/05/14/mxit-attempt-packaging/#comments</comments>
		<pubDate>Thu, 14 May 2009 08:05:05 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[im]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[mxit]]></category>
		<category><![CDATA[packaging]]></category>
		<category><![CDATA[rpm]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=119</guid>
		<description><![CDATA[Mxit released their open platform a while ago as part of this platform they created an plug-in for libpurple the library that both Pidgin and Adium. I am very pleased that the code is available as well as deb&#8217;s for my ubuntu machine. When running the deb it was presented with MXit libPurple Plugin MXit [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mxit.com/web/">Mxit</a> released their open <a href="http://devzone.mxit.com">platform</a> a while ago as part of this platform they created an plug-in for libpurple the library that both <a href="http://www.pidgin.im">Pidgin</a> and <a href="http://adium.im/">Adium</a>.</p>
<p>I am very pleased that the code is available as well as deb&#8217;s for my ubuntu machine. When running the deb it was presented with<br />
<code>MXit libPurple Plugin<br />
MXit libPurple Plugin<br />
(Converted from a rpm package by alien version 8.72.)<br />
</code></p>
<p>I was under the impression that debs were easier to create then rpm&#8217;s?  Also why are they making rpm&#8217;s as their primary packaging and trying to convert to deb&#8217;s also I find it odd that they have had more downloads for the deb platform</p>
<ul>
<li>MXit Pidgin Plugin v1.1.1 &#8211; Fedora 8/Red Hat (.rpm) (92.3 KiB, 364 hits)</li>
<li>MXit Pidgin Plugin v1.1.1 &#8211; Debian/Ubuntu (.deb) (91.1 KiB, 387 hits)</li>
<li>MXit libPurple Plugin v1.1.1 &#8211; Source Code (.tgz) (64.6 KiB, 446 hits)</li>
</ul>
<p>Then again why are all those users downloading the source code? Is it because they don&#8217;t provide a 64bit arch package? Is it because they are removing the mxit promotional image at startup?</p>
<p>Who knows but I don&#8217;t really like to see my debs being created by Alien where there is a perfectly great <a href="https://help.launchpad.net/Packaging/PPA ">Launchpad ppa&#8217;s</a> <a href="http://www.mxit.com/web/">Mxit</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/05/14/mxit-attempt-packaging/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How To Stop SMS Spam</title>
		<link>http://blog.smartcube.co.za/2009/05/01/how-to-stop-sms-spam/</link>
		<comments>http://blog.smartcube.co.za/2009/05/01/how-to-stop-sms-spam/#comments</comments>
		<pubDate>Fri, 01 May 2009 16:21:09 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wasp]]></category>
		<category><![CDATA[waspa]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=107</guid>
		<description><![CDATA[This only really relates to South Africa. Background: Each Text Message (sms) comes from either a Short Code or a Long code or an users mobile number. User mobile numbers: currently 10digits long. Starting with (+27&#124;0)(78). Short codes are 5digits long and start with 3 or 4. No international code since they are only valid [...]]]></description>
			<content:encoded><![CDATA[<p>This only really relates to <a href="http://en.wikipedia.org/wiki/South_Africa">South Africa</a>.</p>
<p>Background:<br />
Each <a href="http://en.wikipedia.org/wiki/Text_messaging">Text Message</a> (<a href="http://en.wikipedia.org/wiki/SMS">sms</a>) comes from either a <a href="http://en.wikipedia.org/wiki/Short_code">Short Code</a> or a Long code or an users mobile number. </p>
<ul>
<li><strong>User mobile numbers:</strong> currently 10digits long.  Starting with (+27|0)(78). </li>
<li><strong>Short codes</strong> are 5digits long and start with 3 or 4. No international code since they are only valid in the current country.</li>
<li><strong>Long Codes</strong> are  10+digits with the international dialing code +27</li>
</ul>
<p>First step when receiving unsolicited bulk messaging, is to try contact the party that it is being sent on behalf of. If you have an X account and are receiving messaging or you should simply be able to reply to the sms (either the short-code or long code) with stop | un-subscribe | remove, generally most systems should accept the stop. </p>
<p>Should this not work, visit <a href="http://www.smscode.co.za/">Smscode</a> but this only applies to sms&#8217;s that come from a short-code. There is a form on the site that allows you to see which <a href="http://waspa.org.za/members/index.php">wasp</a> the short code is registered to.  Once you have that information it is easiest to contact the wasp directly. They are governed by a strict <a href="http://waspa.org.za/code/index.shtml">code of conduct</a> so should their actions not follow the CoC they stand a change of receiving a huge fine or having them selfs removed as a registered wasp.</p>
<p>The last resort is to lodge a <a href="http://waspa.org.za/code/complaint.shtml">complaint</a> with <a href="http://waspa.org.za/">waspa</a>. This  should generally only be used as a last resort should you be unable to contact the wasp or the 3rd party.</p>
<p><strong>My Experience with <a href="http://waspa.org.za/">waspa</a>.</strong><br />
Last week was the final straw. I got another spam sms from X an under18&#8242;s event co-coordinator party planer type effort. I have no idea how I got on their list but their website didn&#8217;t provide a means to contact/un-subscribe. It originated from a Long code so I was unable to use <a href="http://www.smscode.co.za/">Smscode</a> to determine the wasp that the message was sent by. I logged a complaint on the waspa website on Friday 30th of April. I almost instantly cc&#8217;ed on the email to their support team containing all the relevant information. Later that day I got an email saying that one of waspa&#8217;s representatives was looking into this and I should receive an update with in 5 working days&#8230;.</p>
<p>This afternoon(Friday 1st May, public holiday) I got a call from <a href="http://waspa.org.za/members/index.php?show=2915">SmsPortal</a> the wasp who actually sent the spam. He was extremely polite and assured me they had removed my number from X&#8217;s list and I should not receive any further contact from them.</p>
<p>Something else to note these methods are also valid for subscription services as well. Also note the un-subscribe sms needs to be on the cheapest possible short code since they can vary from R1.00 all the way up to R30.00. They take subscription services way more seriously then just standard bulk messaging.</p>
<p>Only time will tell but the quick response time and the guy really didn&#8217;t seem like first line support makes me feel as if this issue is now closed. I hope this will help any one else that relieves mobile spam. At least you know there is a relatively easy way of stopping it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/05/01/how-to-stop-sms-spam/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ZA&#8217;s nokia store joins others in failing</title>
		<link>http://blog.smartcube.co.za/2009/04/30/za-nokia-store-joins-others-in-failing/</link>
		<comments>http://blog.smartcube.co.za/2009/04/30/za-nokia-store-joins-others-in-failing/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 07:03:00 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[nokia]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=101</guid>
		<description><![CDATA[Further more on Nokia&#8217;s music store fail I recently found out that The South African branch or what ever they call them launched a localized version of the music store. Nokia has a large(55.07%) share of the mobile&#8217;s with in South Africa in fact they have the largest, Yes I know this is only from [...]]]></description>
			<content:encoded><![CDATA[<p>Further more on <a href="http://nokia.com">Nokia&#8217;s</a> <a href="http://blog.smartcube.co.za/2009/04/23/nokias-music-store-fail/">music store fail</a> I recently found out that The <a href="http://en.wikipedia.org/wiki/South_Africa">South African</a> branch or what ever they call them launched a localized version of the <a href="http://music.nokia.co.za">music store</a>.</p>
<p>Nokia has a <a href="http://stats.getjar.com/statistics/AF-ZA/manufacturer/Nokia">large(55.07%)</a> share of the mobile&#8217;s with in South Africa in fact they have the <a href="http://stats.getjar.com/statistics/AF-ZA/manufacturer/All">largest</a>, Yes I know this is only from people downloading applications but most of these users will be tech savvy enough to be able to use a mobile music store.</p>
<p>Back to the problem at hand. With this huge potential market Nokia&#8217;s za version of the store is even worse then <a href="http://musicstore.nokia.com/">worldwide</a> and <a href="http://music.nokia.co.uk/">uk</a> at least even with their bugs they allow any browser(mobile/web) to view their site and is mostly usable. </p>
<p>Firstly viewing the site from <a href="http://www.mozilla.com/en-US/firefox/personal.html">firefox</a>. &#8220;Unsupported Device&#8221;</p>
<blockquote><p>Nokia Music Store does not currently support your device. Further information about Nokia Music Store and compatible devices can be found at the <strong>Nseries</strong> web site.<br />
You can access the Nokia Music Store from a PC using Internet Explorer</p></blockquote>
<p>So that is what I did using <a href="https://addons.mozilla.org/en-US/firefox/addon/59">Useragnet Switcher</a> set to <a href="http://nds1.nds.nokia.com/uaprof/NN85-1r100.xml">N85</a> one of the required <a href="http://europe.nokia.com/nseries/#l=experiences,music">Nseries</a> I get redirected to an <a href="http://music.nokia.co.za/Error.htm?aspxerrorpath=/MobileALC/home.aspx">error page</a></p>
<blockquote><p>
An error has occurred &#8211; we apologise for the inconvenience.<br />
If you are using a mobile device please try reloading the Nokia Music Store<br />
If you are using a PC with Internet Explorer click here to try the main Nokia Music site<br />
If the problem persists, then click here and tell us which page you were trying to view</p></blockquote>
<p>Nokia are you trying to get users to use your product? The Uk version is complaining about <a href="http://www.engadgetmobile.com/2009/04/29/nokia-music-veep-addresses-slow-comes-with-music-sales-in-the-uk/">slow sales</a>? Maybe their product just doesn&#8217;t work good enough. </p>
<p>Their <a href="http://www.nokia.com/A4136001?newsid=1305539">profits</a> seems to be <a href="http://www.engadgetmobile.com/2009/04/16/nokias-profits-drop-90-in-q1-2009/">falling</a> quite drastically is <a href="http://www.crunchgear.com/2009/03/17/nokia-cutting-1700-poor-souls/">laying off staff</a> an attempt to fix this?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/04/30/za-nokia-store-joins-others-in-failing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Is Expanding</title>
		<link>http://blog.smartcube.co.za/2009/04/28/android-is-expanding/</link>
		<comments>http://blog.smartcube.co.za/2009/04/28/android-is-expanding/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 06:55:24 +0000</pubDate>
		<dc:creator>drubin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[vodafone]]></category>

		<guid isPermaLink="false">http://blog.smartcube.co.za/?p=95</guid>
		<description><![CDATA[Android releases CupCake (1.5) with some major improvements. Vodafone launches HTC-Magic in Spain. Samsung launches their first Android based phone the i7500 I must say from the pics of the HTC-Magic it looks like it has quiet a aesthetic improvement on the G1 although I think my black version looks much better.]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://android.com/">Android</a> releases <a href="http://developer.android.com/sdk/1.5_r1/index.html">CupCake</a> (1.5) with some major <a href="http://source.android.com/roadmap/cupcake">improvements</a>.</li>
<li><a href="http://www.vodafone.com">Vodafone</a> launches <a href="http://www.htc.com/www/product/magic/overview.html">HTC-Magic</a> in Spain.</li>
<li><a href="http://www.samsung.com/">Samsung</a> launches their first Android based phone the <a href="http://www.gsmarena.com/samsung_i7500-2791.php">i7500</a></li>
<p>I must say from the pics of the <a href="http://www.gsmarena.com/htc_magic-2714.php">HTC-Magic</a> it looks like it has quiet a aesthetic improvement on the <a href="http://www.gsmarena.com/t_mobile_g1-2533.php">G1</a> although I think my black version looks much better.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.smartcube.co.za/2009/04/28/android-is-expanding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

