언어 설정

Menu
Sites
Language
How to launch UI and service native application simultaneously?

I've been developing UI and service native applications with Tizen SDK 2.3 rev 1.

 

What problem I have is,

I need to run both of them simultaneously using mobile emulator.

I successfully made a package which contains both UI and service applications binary and etc. (Surely both of them have same certificate)

 

Tizen SDK manual says "the service application runs automatically while the UI application runs."

I don't understand exactly what that means.

Does it mean that do I have to write code into UI application to launch service application manually?

OR,  Tizen application loader launches both of them automatically, so What I just have to do is check project references and manifest file between of them?

 

 

 

Edited by: Geon Woo Kim on 23 12월, 2014
답변 바로가기

Responses

3 댓글
Alex Ashirov

Hello,

You do not need to write any code to launch service application manually. It will be launched automatically. Please don’t forget to establish a project reference between UI application and service application.

Mark as answer
Alex Dem

Hi,
just fyi, regarding service apps and how to define specific attributes:
https://developer.tizen.org/dev-guide/2.3.0/org.tizen.mobile.native.appprogramming/html/guide/app/service_applications.htm
regarding multi-project applications:
https://developer.tizen.org/dev-guide/2.3.0/org.tizen.mobile.native.appprogramming/html/app_dev_process/multiple_project_dev_package.htm
Alexey.

Geon Woo Kim

Thanks a lot.