Languages

Menu
Sites
Language
Register binary warning - "Devices which support the defined features and permissions do not exist."

I made a tizen wearable native application.

A warning popup is happened when I upload binary.

The warning message is "Devices which support the defined features and permissions do not exist. ... ".

My tizen-manufest.xml is like below

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<manifest xmlns="http://tizen.org/ns/packages" api-version="3.0" package="com.company.app.someapp" version="0.5.3">
    <author email="myemail@company.co.kr" href="http://company.com">company</author>
    <profile name="wearable"/>
    <ui-application appid="com.company.app.someapp" exec="execname" hw-acceleration="on" multiple="false" nodisplay="false" splash-screen-display="false" taskmanage="true" type="capp">
        <label>App name</label>
        <icon>app.png</icon>
        <metadata key="APP_CONTROL_OPERATION_SETTING" value="http://tizen.org/appcontrol/operation/setting"/>
        <background-category value="sensor"/>
        <background-category value="background-network"/>
    </ui-application>
    <privileges>
        <privilege>http://tizen.org/privilege/appmanager.launch</privilege>
        <privilege>http://tizen.org/privilege/haptic</privilege>
        <privilege>http://tizen.org/privilege/bluetooth</privilege>
        <privilege>http://tizen.org/privilege/internet</privilege>
        <privilege>http://tizen.org/privilege/display</privilege>
    </privileges>
    <feature name="http://tizen.org/feature/network.bluetooth">true</feature>
    <feature name="http://tizen.org/feature/sensor.accelerometer">true</feature>
    <feature name="http://tizen.org/feature/network.internet">true</feature>
    <feature name="http://tizen.org/feature/screen.size.normal.320.320">true</feature>
    <feature name="http://tizen.org/feature/screen.shape.circle">true</feature>
    <feature name="http://tizen.org/feature/sensor.gyroscope">true</feature>
</manifest>

Package name, email, label and icon are replaced with meaningless.

I just want to support Gear S3 tizen 3.0 device.

Does anyone know what's the problem?

 

 

Responses

1 Replies
Yasin Ali

Hi,

I think you should check os version of the device to exactly match
with api version in manifest.

As number of privilege and  feature is not too high you can remove all
privilege and  feature first and then add one by one to check if binary
is successfully uploaded. In this process possibly you will find which
feature or privilege actually causing that problem.

Hope it'll help.