I want to request a smack rule for my tizen native app to use some function.
In some tizen project, there are a '~~.manifest' file. But in tiezen studio, I can see only 'tizen-manifest.xml' and there are no smack rule. I can't use <define> or <smack request> in tizen-manifest.xml
Where can I search or make *.manifest in tizen studio?
The content in manifest file have like below.
<manifest>
<define>
<domain name="mytizenapp"/>
<request>
<smack request="otherapp" type="rwx" />
...
</request>
</define>
...
And other tizen project's manifest file is doing that
<manifest>
<define>
<domain name="otherapp"/>
<permit>
<smack permit="mytizenapp" type="rwx" />
...
...