语言

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.

编辑者为: Brock Boland 17 3月, 2014 原因: Paragraph tags added automatically from tizen_format_fix module.

响应

1 回复
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); ...