Getting Started with BlackBerry
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDeveloping for the Handheld DeviceGetting Started with BlackBerry

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 27th, 2009, 07:28 PM
jamespayne jamespayne is offline
Administrator
Developer Shed Admin.
 
Join Date: Sep 2008
Location: South Florida
Posts: 78 jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Day 1 h 15 m 17 sec
Reputation Power: 10
Send a message via Yahoo to jamespayne
How to Install the Blackberry Simulator and Visual Studio Plug-In

It seems as if the smartphone revolution is upon us. Gone are the days where cell phones were simply used to make calls. Now, they can plan your life, allow you to stay in touch with loved ones, ensure that you’re always connected to all things work-related (which may or may not be a good thing), and give us directions to the nearest Thai restaurant, among other tasks. The leader of the smartphone pack can officially be declared the BlackBerry, which is well known for its addictive quality. Keep Reading...

Reply With Quote
  #2  
Old June 10th, 2009, 11:52 AM
andyph andyph is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2009
Posts: 9 andyph User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 55 m 31 sec
Reputation Power: 0
Absolutely cracking article for anyone looking to get into all of this, like myself!

Reply With Quote
  #3  
Old July 19th, 2009, 10:17 PM
Arty Ziff's Avatar
Arty Ziff Arty Ziff is offline
Green Eggs And Ham
Click here for more information.
 
Join Date: Apr 2005
Posts: 4,826 Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level)Arty Ziff User rank is General 34th Grade (Above 100000 Reputation Level) 
Time spent in forums: 3 Months 2 Weeks 1 Day 11 h 41 m 3 sec
Reputation Power: 3219
Development W/O Visual Studio?

I'm interested in Blackberry app development and a BB emulator, but I don't have Visual Studio. Is it possible to develop on Linux? Perhaps with Eclipse or some other IDE or text editor?
__________________
For the last time, they aren't dolls, they're action figures!!

Reply With Quote
  #4  
Old July 21st, 2009, 11:27 AM
jamespayne jamespayne is offline
Administrator
Developer Shed Admin.
 
Join Date: Sep 2008
Location: South Florida
Posts: 78 jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level)jamespayne User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Day 1 h 15 m 17 sec
Reputation Power: 10
Send a message via Yahoo to jamespayne
Hey Arty,

You can indeed program for BlackBerry on a Linux box, though at the moment you have to do a bit of a work-around. I found this post from a user explaining the process:

"""
1) create a directory with the whole JDE (install it on a windows box and copy it across on linux)
2) Install the Sun WTK (you will need it to run preverify)
3) in your ant script import bb-ant (which you would have previously downloaded) and have the correct targets

Code:
<property name="jde.home" value="${user.home}/dev/bbjde" />
<property name="output.basename" value="MyApplication" />
<property name="src" value="../src" />

<taskdef resource="bb-ant-defs.xml" />
<target name="build">
<mkdir dir="${build.dir}" />
<rapc output="${output.basename}" srcdir="${src}" destdir="${build.dir}" quiet="false">
<jdp title="My Blackberry Client" vendor="MySelf" version="1.1.4" type="cldc" runonstartup="true" startuptier="7" icon="../resources/icon.png" />
</rapc>
</target>

<target name="sign" depends="build">
<sigtool codfile="${build.dir}/${output.basename}.cod" password="znetworks"/>
<delete file="LogFile.txt" />
</target>4) Make sure that the bb-ant is in your ant classpath
5) Make sure that, when you run eclipse, you have the bin directory of WTK and the JDE in your path
6) Just build from the ant task

Unfortunately I couldn't get the simulator running on Linux yet, so I just mount the build directory in a directory on a windows virtual box and run it from there """

I haven't implemented that myself, but other users say that it works. Hope that helps. If not, let me know and I will see if I can dig something else up. Thanks!

Reply With Quote
  #5  
Old August 14th, 2009, 10:22 PM
jasonbird jasonbird is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2009
Posts: 20 jasonbird Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 1 h 37 m 28 sec
Reputation Power: 0
Quote:
Originally Posted by jamespayne
Hey Arty,

You can indeed program for BlackBerry on a Linux box, though at the moment you have to do a bit of a work-around. I found this post from a user explaining the process:

"""
1) create a directory with the whole JDE (install it on a windows box and copy it across on linux)
2) Install the Sun WTK (you will need it to run preverify)
3) in your ant script import bb-ant (which you would have previously downloaded) and have the correct targets

Code:
<property name="jde.home" value="${user.home}/dev/bbjde" />
<property name="output.basename" value="MyApplication" />
<property name="src" value="../src" />

<taskdef resource="bb-ant-defs.xml" />
<target name="build">
<mkdir dir="${build.dir}" />
<rapc output="${output.basename}" srcdir="${src}" destdir="${build.dir}" quiet="false">
<jdp title="My Blackberry Client" vendor="MySelf" version="1.1.4" type="cldc" runonstartup="true" startuptier="7" icon="../resources/icon.png" />
</rapc>
</target>

<target name="sign" depends="build">
<sigtool codfile="${build.dir}/${output.basename}.cod" password="znetworks"/>
<delete file="LogFile.txt" />
</target>4) Make sure that the bb-ant is in your ant classpath
5) Make sure that, when you run eclipse, you have the bin directory of WTK and the JDE in your path
6) Just build from the ant task

Unfortunately I couldn't get the simulator running on Linux yet, so I just mount the build directory in a directory on a windows virtual box and run it from there """

I haven't implemented that myself, but other users say that it works. Hope that helps. If not, let me know and I will see if I can dig something else up. Thanks!


Thanks for sharing~~~!

Reply With Quote
Reply

Viewing: Dev Shed ForumsDeveloping for the Handheld DeviceGetting Started with BlackBerry > How to Install the Blackberry Simulator and Visual Studio Plug-In


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek