Languages

Menu
Sites
Language
MANIFEST_INVALID Error when trying to run Web App on Gear S2

Hi all,

I am trying to run the Altimeter sample app on a Gear S2 watch.

I have enabled the debugging on the watch and configured the certificate correctly.

When I try to run the app on the watch this is what I get:

Launching the Tizen application...

# If you want to see the detailed information,

# please set the logging level to DEBUG in Preferences and check the log file in 'C:\tizen-sdk-data\ide\logs/ide-20151118_084304.log'.

 

[Initializing the launch environment...]

    RDS: On

    Target information: SM-R720

    Application information: Id(2T4uDlei1L.tets4), Package Name(2T4uDlei1L), Project Name(tets4)

[Transferring the package...]

    Transferred the package: wgt stream -> /opt/usr/apps/tmp/tets4.wgt

[Installing the package...]

path is /opt/usr/apps/tmp/tets4.wgt

start process (install)

.........

icon_path : /opt/usr/apps/2T4uDlei1L/shared/res/2T4uDlei1L.tets4.png

....

error : 12

 

end process (fail)

processing result : MANIFEST_INVALID [12] failed

spend time for pkgcmd is [65400]ms

cmd_ret:12

Unexpected stop progress...

(87.28 sec)

 

Any idea?

 

Thanks,

Alessandro

Edited by: Alessandro Montanari on 18 Nov, 2015
View Selected Answer

Responses

3 Replies
AVSukhov

Hello,

Strange error. 

Web app has no manifest file. Web app has own configuration file - config.xml.

Make sure that you use correct perspective or profile.

Alessandro Montanari

The perspective is correct and this is the conifig.xml that I am using (I didn't change anything from the example):

 

<?xml version="1.0" encoding="UTF-8"?>

<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="http://yourdomain/altimeter" version="1.0.0" viewmodes="maximized">

    <tizen:application id="35lSVtEoIw.altimeter" package="35lSVtEoIw" required_version="2.3"/>

    <content src="index.html"/>

    <feature name="http://tizen.org/feature/screen.size.all"/>

    <icon src="icon.png"/>

    <name>altimeter</name>

    <tizen:profile name="wearable"/>

</widget>

Mark as answer
Alessandro Montanari

It works removing the line <tizen:profile name="wearable"/> from config.xml.

Apparently the profile for the Gear S2 is unknown.