Hello,
I made two small games written on C++ using GLES. Both games working on emulator, but not working on real device.
I got report from QA, that they both successful installed, but by click on icon nothing happened.
I haven't a real Tizen device and can't ivestigate what is problem. I think problem is in manifest file, probably it failed definition any feature.
What are minimal necessary defined features?
This is my manifest file:
<manifest xmlns="tizen.org/ns/packages" api-version="2.3" package="com.xxx" version="1.0.1">
<author href="xxx">xxx</author>
<profile name="mobile"/>
<ui-application appid="com.xxx" exec="xxx" multiple="false" nodisplay="false" taskmanage="true" type="capp">
<label>xxx</label>
<icon>xxx.png</icon>
</ui-application>
<feature name="tizen.org/feature/screen.size.all">true</feature>
</manifest>
Or probably was generated wrong binary? By me was generated com.xxx-1.0.1-i386.tpk, but binary inside package has ELF header.
Thanks,