External Resources Bada Developer site
35
votes
5answers
5k views
Developing cross platform mobile application
More and more mobile platforms are being launched and sdk's are available to developers. There are various mobile platform are available,
Android,iOS,Moblin,Windows mobile 7,RIM,symbian,bada,maemo ...
7
votes
3answers
1k views
Bada development in Linux
The Bada site list the Windows OS as a system requirement for installing the Bada SDK.
Is it possible to create Bada apps using Linux?
6
votes
2answers
652 views
Maximum application size of android & BADA platform
what is maximum size of thick/thin client application(to d/w through OTA) in both Android & Samsung Bada platform ?
4
votes
2answers
185 views
What's the best common format for an eBook like text to share with most of the mobile phone types
There is a description about a product or event that people would like to share among them. This can be a simple text or rich text too.
They are looking into which format is the best for this ...
3
votes
1answer
20 views
Getting model name for device in Bada
I'm looking for an API call that will tell me wha kind of device the user has. For example: GT-S7250 or Wave M
Is there an API for this?
3
votes
1answer
259 views
Is there any way to run Python on Bada?
I'm starting developing to Bada platform. But C++ isn't my favorite language. So, is there any way to run Python on Bada?
Update: For Android there is a scpripting layer (SL4A), and it's make ...
3
votes
3answers
312 views
samsung bada development without using pointers
Objects in C++ can be created using the methods listed below(that I am aware of):
Person p;
or
Person p("foobar");
or
Person * p = new Person();
Then, why does not the Samsung Bada IDE allow ...
3
votes
2answers
219 views
Number of Transactions
I am in a need of multiple Transaction. But Bada is allowing me to do only one transaction. How to increase the number of Transaction? The code which i am using is
result ...
3
votes
3answers
2k views
What is the compiler of Samsung Bada?
Recently Samsung presented Bada platform for mobile phone.
http://developer.bada.com/apis/index.do
I can find developer materials from the above web page but, I can't find how can I compile it and ...
2
votes
0answers
46 views
How to sideload an app on a Bada emulator?
I have a customer that would like to see the progress of the app as it's being developed and I'd like to be able to have them launch the app in the emulator. I see the emulator under ...
2
votes
2answers
102 views
bada Programming - Popup message with Keypad
I have this error where I click something, it will popup a message with a close button, when I click on the close button, some part of the popup does not close properly. Here is a screen shot of it. ...
2
votes
1answer
556 views
Is it possible to install Bada SDK into eclipse?
I'd like to know if it is possible, because I'd prefer to have only one eclipse running on my computer.
Thanks a lot.
2
votes
1answer
518 views
Failed to read blob data from sqlite
i store blob data with php like this
$this->_db->exec"CREATE TABLE media (url TEXT, content BLOB)");
$fp = fopen($encoded['path'], 'rb');
$sql = "INSERT INTO media (url, content) VALUES (?, ...
2
votes
1answer
68 views
Is there a class in bada which is similar to “Context” in android?
I'm changing a project from android to bada, but I dont find a class which has the same effect as "Context". Any suggestion? Thanks you very much.
2
votes
3answers
804 views
Bada platform and dynamic link library
As I know Samsung Bada is not operating system but, just wonder if I can develop DLL like shared library for Bada applications.
Thanks.
1
vote
2answers
33 views
bada C++ std::stringstream
bada crashed on stringstream read.
json::Object objDocument = d();
std::stringstream stream;
json::Writer::Write(objDocument, stream);
json::Object objDocument2;
json::Reader::Read(objDocument2, ...
1
vote
2answers
32 views
Did any one know an free good video course for bada?
I would like to learn some bada programing. And I want to know if there are some free video curses like CS193P for iOS, or a good book for beginners?
Any advice, link, tutorial, reference are well ...
1
vote
2answers
64 views
Why is public inheritance advocated when reducing the publicly visible API seems preferable from a maintainability perspective?
I am using bada and refer to the tutorial here, which begins:
class MainForm:
public Osp::Ui::Controls::Form,
public Osp::Ui::IActionEventListener,
public ...
1
vote
1answer
15 views
Bada exceptions on RemoveAllControls call
What's the deal with this, it's driving me crazy?
I run this piece of code;
if(GetControlCount() > 0)
{
RemoveAllControls();
}
And as soon as I step over the RemoveAllControls(); line I get ...
1
vote
1answer
79 views
Does Bada IDE have code completion and meaningful error messages?
I'm trying to upgrade a Bada app from 1.2 to 2.0 with no experience of Bada. I have the project building and can run it in the emulator but I get a load of warnings and I cant click the text boxes to ...
1
vote
1answer
85 views
How to run my app in all bada Device
I have just created a new project with bada SDK 2.0.2. When creating the new project I was asked to select a model i.e either HVGA, QVGA or WQVGA.
Now my problem is that if I select a QVGA model than ...
1
vote
1answer
79 views
How to write a background service in Bada?
How can I write a service running in background for a Bada app? I need to write a service that starts when the device it booted up, and need it to run in background, so that it listens to incoming sms ...
1
vote
2answers
125 views
Why didn't bada require scoped_ptr?
The bada C++ style guide/architecture uses a two-step initialization of C++ objects.
Why did they not simply require the use of scoped_ptr?
1
vote
1answer
41 views
Animation is not supported Exception
When I try to run FormTransition in UiControlAnimator (SDK example) I get an exception saying
"0086.598,EXCEPTION,P32,T00,A124,Osp::Ui::Animations::FrameAnimator::GetStatus (126) > [] Animation is ...
1
vote
2answers
103 views
Does BADA 2.0 support horizontal list or a page control like iphone?
I want to make a part of a screen horizontally scrollable like the page control option provided in iPhone(see first image), Does bada 2.0 supports page control or horizontal scroll?
if bada don't ...
1
vote
1answer
283 views
Bada 2.0 JSON parsing tutorial
Anyone know good tutorial for bada 2.0 JSON Parsing.
Went through the JSON parsing sample provided with bada SDK. I am relatively new to bada and c++ programming, so its difficult to understand.
1
vote
2answers
254 views
bada app crashing on device
Today I've installed Bada SDK and trying first time to build some apps on BADA.
On bada IDE I'm creating a "bada Form Based Application" (File>New>C++/Flash Application Project>bada Form Based ...
1
vote
1answer
105 views
Auto Pointer in Bada
Do anyone know any way to use smart_ptr (Smart Pointer) or auto_ptr (Auto Pointer) in Bada OS?
Bada OS has no std namespace, so, Boost library porting is really difficult.
Perhaps there is another ...
1
vote
1answer
165 views
how to unzip a zipped directory in samsung bada after downloading it from server
We are developing a bada application in which we are downloading a zipped directory having JSON files and images in it.
After downloading the zip file from server we need to extract it for reading.
...
1
vote
0answers
45 views
What link to use on the web to make bada install an application?
Please help me with one thing: I need to be able to forward a bada device to a certain application store page. This page should let the device to install the application using its native installation ...
1
vote
1answer
779 views
Emulator - how to add web browser and Samsung Apps?
I have just installed Bada emulator and it has only settings. Is there any how how to add there web browser and Samsung Apps icon portal. I would like to test some current apps on this emulator.
...
1
vote
1answer
160 views
overlay keyboard for input box in a web control in bada SDK?
Is there anyway i can have an overlay keyboard for input box in a web control?
1
vote
2answers
242 views
How to upload image to twitpic in bada
How to share images in twitpic. Social API in bada is not supporting twitpic. Is there another way for this? and what is meant by multipart form data?
1
vote
2answers
340 views
compiler un programme c++ sous bada sdk
salut,
j'ai installé bada sdk et j'ai essayé de compiler un programme hello word mais ça marche pas.toujours le même problème lors de l'éxécution "Launch Failed. Binary Not Found".j'ai installé le ...
1
vote
1answer
567 views
Facebook in Bada
How to create a facebook application in Bada? Which API should be refered? Please help me..
1
vote
2answers
368 views
BONDI API to launch SMS app
Is it possible for widget to launch SMS app (via BONDI API) on SamSung wave device, so that the pre-defined content can be included ?
Thanks.
1
vote
2answers
267 views
Can Symbian applications be ported to Bada?
Can applications written for Symbian OS be ported to Bada?
1
vote
3answers
341 views
Bada Development
How do I get started with development for the bada OS used in Samsung Wave?
What are the pre-requisites for this task? (I only know some C & C++)
1
vote
2answers
286 views
Encrypt outgoing data? (any mobile platform)
Would it be possible for me to build an application that enables people to encrypt call coming to me with my public key and then for me to decrypt the call data at my end using my own private key. ...
1
vote
1answer
581 views
Compile BADA application from Command prompt
Hello
I want to develop a BADA application which will print the message Helloworld.I have downloaded BADA SDK.It could be done in BADA IDE but i want to compile and run it using command prompt.Now for ...
1
vote
0answers
270 views
How to compile bada gcc toolchain from command line?
Hello
I want to develop a helloworld application but want to compile it using Command line not by BADA IDE.Could any body help me with it.
Thanks
1
vote
1answer
734 views
Parse XML from String using XPath in Bada?
I have read the tutorial on XML parsing in Bada. But I don't want to use a file. I need to parse my XML from a Osp::Base::String. Any ideas which methods should I use? So far I have replaced
...
1
vote
2answers
397 views
Monitoring GPS Coordinates
I need to monitor GPS Coordinates changes at every 15 min and take action based on that. as per bada developer guide report "only one application allowed to run at a time if another application try ...
0
votes
1answer
25 views
X and Y axis doesn' t work on Bada 2.0
I' ve downloaded an example app from Bada documentation, DigitalLocker, and I' ve done and I' m doing some test, I had some problems, but with some help I solved, now I have another problem with X and ...
0
votes
1answer
13 views
FileUnzipper throwing E_IO Exception in Bada Application
I am downloading a zip file from the server and unzipping it using Utility::FileUnzipper class
The code is :
FileUnzipper unzip;
unzip.Construct(SourcePath);
result r = unzip.UnzipTo(TargetPath);
...
0
votes
1answer
12 views
easiest way to store user data/input in a application
what is the easiest way to store e.g. a list of strings in the application, so when the user start the app again i can simply read it out again and work on the stored list of strings?
0
votes
1answer
36 views
eclipse HTML/JS editor
I use bada SDK 1.2 and there is no HTML/JS editor.
What project do you recommend to add in Help->Install New Software?
I have tried 2 projects on sf.net(add jars to plugins) but they didn't work.
0
votes
0answers
16 views
Textbox Control in bada 1.1?
Is text box control is available in bada 2.0 only .Then how can we use control or method which can
provide the functionality similar to textbox in bada 1.1 .Is any one have idea than Kindly please ...
0
votes
1answer
34 views
Facebook Registeration for bada 1.1
I have made an app in bada 2.0 in which I have implement facebook and It works fine.
But when I use the same code for bada 1.1, it doesn't work.
I have:
registered the app for 1.1 both on ...
0
votes
0answers
23 views
How to retrieve J2ME application logs on Bada?
I have an J2ME application installed on a Bada 2.0 device. This application runs fine except for NFC related events. I would like to investigate this reading the logs written by Bada's Java virtual ...