-
Anirudh
-
Andriy Mytroshyn
c++ bada
It dosent seem that iostream is in the directory for bada. is this right ? What should i use instead ? This file need me to use cout, in many forums i see that this function use in bada but i ca not find it in bada. I use bada 1.2.0 and 1.2.1.
-
Murat
mobile debugging bada
I’ve been developing a mobile app recently. The app is nearly finished with all features and it usually works fine when I test it.However, sometimes when I navigate between forms, the app crashes: “Simulator.exe has stopped working…”It doesn’t occur on a specific form or place, but randomly, as far as I’ve observed. How do I track this down and debug?the app is developed on the Bada platform for Samsung. But I don’t think this is a platform specific question, so you can answer as if this was a
-
DmitryR
c++ json stringstream bada
bada crashed on stringstream read.json::Object objDocument = d(); std::stringstream stream; json::Writer::Write(objDocument, stream); json::Object objDocument2; json::Reader::Read(objDocument2, stream); // <=== crashor like this:std::string *requestString = new std::string(data); AppLog(requestString->c_str()); // <=== contains correct data std::stringstream stream; stream << *requestString; const char *ddd = stream.str().c_str(); AppLog(ddd); // <==== contains random dataHow c
-
David M
web-applications phonegap bada samsung-mobile cordova
Has anyone been successful with the integration of Phonegap in Bada? I am using SDK 2.0.4 and have tried the project app available here (https://github.com/cordova/cordova-bada) but keep getting this error:TypeError: ‘undefined’ is not an object (evaluating ‘window.device.uuid’) at line 1 loaded from file I don’t understand why the Phonegap website indicates that Bada is supported…
-
Seva Alekseyev
linker runtime-error bada unsatisfiedlinkerror
Take a sample bada app, any one. For example, “BasicApp”. Into MainForm.cpp, insert the following:extern void Hello();Do not define the function anywhere. Then under MainForm::OnInitializing, place a call to it:MainForm::OnInitializing(void) {Hello();//…The app compiles and links just fine, and runs up to that line. Then crashes. The crash does not come up as a breakpoint in debugger.SDK 2.0.5, targeting bada 2.0 HVGA. All settings are defaults.What’s up with that linker behavior? How can I ma