Live data from Hacker News

Ask HN: Is anyone doing Blackberry app development?

news.ycombinator.com

1–10 of 16 posts

Re: Ask HN: Is anyone doing Blackberry app development?

#3
Yes, kind of. I have a neat little app on the Android Market (http://phonalyzr.com), which I am going to port to the Blackberry in time for their store launch. The reason I'm targeting Android and BB is because of the iPhone's ridiculously restrictive SDK - on these devices the OS notifies the user that my app will be reading their call log/contact list and the user can choose to proceed or not, whereas on the iPhone that decision has already been made for the user by someone in Apple's HQ.

At my day job I use python and js to do web development while this is my spare-time project and to be honest, Java isn't so bad. Yes, it's tiresomely verbose, but Eclipse and the Android plug-in are an awesome IDE and since you're dealing only with the mobile-specific SDK, you don't have to contend with issues that make Java bad in other contexts (heavy frameworks, endless XML config files, etc). Perhaps someone with experience in both can clue me in, but I doubt Objective C is less verbose or more dynamic than Java.

But I think you're right in that people might be missing an opportunity by focusing so heavily on the iPhone. The BB SDK is more powerful than the iPhone's, there's more than twice as many BB users than iPhone users and I don't think anyone will argue that they're any less affluent than iPhone users.

Mostly, I think, it'll depend on how RIM promotes the app store and the kind of deals it manages to get the carriers to accept. I worked for RIM a few years ago and saw how incredibly difficult and demanding it is to work with carriers, as they are the actual manufacturer's "customers" and their interests are frequently at odds with those of users.

Re: Ask HN: Is anyone doing Blackberry app development?

#5

Yes, kind of. I have a neat little app on the Android Market ( http://phonalyzr.com ), which I am going to port to the Blackberry in time for their store launch. The reason I'm targeting Android and BB is because of the iPhone's ridiculously restrictive SDK - on these devices the OS notifies the user that my app will be reading their call log/contact list and the user can choose to proceed or not, whereas on the iPho…

I've been using phonalyzr for about a week and absolutely love it. Just wanted to say thanks for that awesome app.

Re: Ask HN: Is anyone doing Blackberry app development?

#6
I haven't myself, but I've worked at a company that did. Here's what I picked up: BlackBerry users tend to use their devices a lot and are not afraid to download things.

It's not going to be nearly the same market as the iPhone reaches, so iFart and the like would, IMHO, fail miserably on the BlackBerry. I bet there is money to be made in apps targeting certain verticals where BlackBerries are common. Law, real estate, and investing come to mind.

Re: Ask HN: Is anyone doing Blackberry app development?

#7

Yes, kind of. I have a neat little app on the Android Market ( http://phonalyzr.com ), which I am going to port to the Blackberry in time for their store launch. The reason I'm targeting Android and BB is because of the iPhone's ridiculously restrictive SDK - on these devices the OS notifies the user that my app will be reading their call log/contact list and the user can choose to proceed or not, whereas on the iPho…

> I doubt Objective C is less verbose or more dynamic than Java

Oh, Objective C is certainly more dynamic. It uses a message passing mechanism. You can do this in Objective C without a compile error (note "id" is a generic object type)

id anObject = Do some initialization; [anObject passSomeMessage];

The closest in Java would be:

Object anObject = new SomeClass(); anObject.callSomeMethod();

Which wouldn't compile.

(Please note I haven't used Objective C nor Java in a while. Please excuse any errors.)

Re: Ask HN: Is anyone doing Blackberry app development?

#9

Yes, kind of. I have a neat little app on the Android Market ( http://phonalyzr.com ), which I am going to port to the Blackberry in time for their store launch. The reason I'm targeting Android and BB is because of the iPhone's ridiculously restrictive SDK - on these devices the OS notifies the user that my app will be reading their call log/contact list and the user can choose to proceed or not, whereas on the iPho…

Brilliant app, just installed on my dev G1. Now if only I had a good idea for Android...

Re: Ask HN: Is anyone doing Blackberry app development?

#10

Yes, kind of. I have a neat little app on the Android Market ( http://phonalyzr.com ), which I am going to port to the Blackberry in time for their store launch. The reason I'm targeting Android and BB is because of the iPhone's ridiculously restrictive SDK - on these devices the OS notifies the user that my app will be reading their call log/contact list and the user can choose to proceed or not, whereas on the iPho…

I wanted to create an iPhone app that tells me who I haven't called in a while and should. One opinion on networking is that someone is in your network if they know what you are up to, can recognize you in person, and you have contacted them in the last three months.

Can Phonealyzr and the BB SDK do that?

And judging by the number if people I see using their BB when they are not at work - I think there is a huge market for a networked entertainment diversion.

Post reply on HN