bootstrap: Add feature to support extra data sets when app launch 13/261713/4 submit/tizen/20210723.091024
authorWoochanlee <wc0917.lee@samsung.com>
Fri, 23 Jul 2021 06:14:56 +0000 (15:14 +0900)
committerwoochan lee <wc0917.lee@samsung.com>
Fri, 23 Jul 2021 09:09:22 +0000 (09:09 +0000)
commitf9077f5573abee0fdba7053bcdfda0404169903e
tree3f7c08ffb52865defbb8487377ea66d6961e0917
parent04f372b8d3402b90c8a7567bb7827b4f0e4a104d
bootstrap: Add feature to support extra data sets when app launch

User may want to set various data set for launching app.
after this implementation.
user can do like below

  - python
    extraData1 = LaunchData()
    extraData1.key = 'Key1'
    extraData1.value = 'Value1'
    extraData2 = LaunchData()
    extraData2.key = 'Key2'
    extraData2.value = 'Value2'

    datas = [extraData1, extraData2]
    stub.launchApp(ReqLaunchApp(packageName='org.tizen.example.NUITizenGallery', data=datas))

Change-Id: Id7756a080acb9e940d0679a4ae0ae89ccc9fb57e
org.tizen.aurum-bootstrap/inc/Runnable/LaunchAppRunnable.h
org.tizen.aurum-bootstrap/src/Commands/LaunchAppCommand.cc
org.tizen.aurum-bootstrap/src/Runnable/LaunchAppRunnable.cc
protocol/aurum.proto