Tizen Developers

Menu
Sites
Language
Bada To Tizen coverted app dont run

Hi,

When i convert bada application to Tizen native app through migration tool does not run if compatible mode is unchecked while converting.

It crashes on the AppInitializing() method.

Edited on 18 03, 2014

Responses

1 Replies
Slawek Kowalski
Bada as default run with Frame but not Tizen. You have to Frame on your own. like this: MyApp::OnAppInitializing(AppRegistry& appRegistry) { // ==== create frame for the application Frame* pAppFrame = new (std::nothrow) Frame(); pAppFrame->Construct(); pAppFrame->SetName(L"MyAppName"); this->AddFrame(*pAppFrame); ...