Reputation: 16536
I've downloaded macOSX Tizen for wearable sdk, and successfully installed the compiled sample HelloAccessory
, but when I try to compile source project and try to install, I just receive an "Error installing application" and can't find any related log trace.
After struggling with this longer than I'd like, I figured out this line in the Tizen project config.xml was causing the problem:
<tizen:privilege name="http://developer.samsung.com/privilege/accessoryprotocol"/>
Removing it, I can install the application with no errors, but obviously, communication between watch and mobile does not work.
I read this could have something to do with signing certificates, so I followed Tizen sdk manual to generate a certificate request, and today I received certificate-registration.xml
from Samsung, but still, the problem persists.
After days (maybe weeks), I'm in the edge of insanity. Am I missing something obvious? Anyone succeeded compiling the project samples or at least could point me in the right direction to find the log with a more exhaustive explanation of what's happening?
Upvotes: 0
Views: 1168
Reputation: 490
If you want to test with an actual device, you must get a special certificate from Samsung that uses a UUID of your Samsung Gear.
Upvotes: 0
Reputation: 6386
I suppose that privilege you are using is not public, so you can use it only on emulator, not on actual device (security policy does not allow installing non-public privileged apps that are signed with 'partner' key). See thread below for more details: http://developer.samsung.com/forum/board/thread/view.do?boardName=SDK&messageId=258928
Upvotes: 0