diff options
author | cookie <cookie@samsung.com> | 2016-03-10 18:35:32 +0900 |
---|---|---|
committer | Sungwon Han <sungwon2.han@samsung.com> | 2016-03-10 17:43:08 -0800 |
commit | 65b34ca2f6f204df7c2725516387b5dca6e19956 (patch) | |
tree | 89eaa48780a6300080a8bb32a26846215b54196b | |
parent | f63a52d7e1f167c25acb5922ee979bb4c7ed44a7 (diff) | |
download | browser-65b34ca2f6f204df7c2725516387b5dca6e19956.tar.gz browser-65b34ca2f6f204df7c2725516387b5dca6e19956.tar.bz2 browser-65b34ca2f6f204df7c2725516387b5dca6e19956.zip |
Add the app-control in case of no mime type
[Issue] operation name="http://tizen.org/appcontrol/operation/view" and there is no mime type
the browser is not launch by app control
[Problem] just uri name is http or https , there is no mime type, the browser is not launch
[Solution] Add the app-control by http / https
[Verify] launch the browser
Change-Id: I475c0ede394817aaddfd1753f5f8efa632cc2d74
Signed-off-by: cookie <cookie@samsung.com>
-rwxr-xr-x[-rw-r--r--] | manifest.xml.in.mb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifest.xml.in.mb b/manifest.xml.in.mb index 1e82253a..b8a502f0 100644..100755 --- a/manifest.xml.in.mb +++ b/manifest.xml.in.mb @@ -60,6 +60,18 @@ <app-control> <operation name="http://tizen.org/appcontrol/operation/view" /> <uri name="http" /> + </app-control> + <app-control> + <operation name="http://tizen.org/appcontrol/operation/view" /> + <uri name="https" /> + </app-control> + <app-control> + <operation name="http://tizen.org/appcontrol/operation/view" /> + <uri name="file" /> + </app-control> + <app-control> + <operation name="http://tizen.org/appcontrol/operation/view" /> + <uri name="http" /> <mime name="application/x-shockwave-flash" /> </app-control> <app-control> |