Languages

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 by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

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); ...