안녕하세요
GearS2 용 watchface를 만들어서 tizen store에 등록하려고 하니 다음과 같이 에러메세지가 나왔습니다.
Devices which support the defined features and permissions do not exist. p (or config.xml).
manifest.xml 은 다음과 같습니다.
더 추가하거나 변경해야 할 것이 있을까요?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <manifest xmlns="http://tizen.org/ns/packages" api-version="2.3.1" package="org.crares.redtime" version="1.0.0"> <author email="leeyj78@gmail.com">crares</author> <description>redtime is free!</description> <profile name="wearable"/> <watch-application ambient-support="true" appid="org.crares.redtime" exec="redtime"> <label>redtime</label> <icon>icon.png</icon> </watch-application> <privileges> <privilege>http://tizen.org/privilege/network.get</privilege> <privilege>http://tizen.org/privilege/appmanager.launch</privilege> <privilege>http://tizen.org/privilege/network.set</privilege> <privilege>http://tizen.org/privilege/bluetooth</privilege> <privilege>http://tizen.org/privilege/nfc</privilege> <privilege>http://tizen.org/privilege/widget.viewer</privilege> </privileges> <feature name="http://tizen.org/feature/network.nfc">true</feature> <feature name="http://tizen.org/feature/network.bluetooth">true</feature> <feature name="http://tizen.org/feature/screen.size.normal">true</feature> <feature name="http://tizen.org/feature/network.wifi">true</feature> <feature name="http://tizen.org/feature/screen.shape.circle">true</feature> <feature name="http://tizen.org/feature/screen.size.normal.320.480">true</feature> </manifest>