viktorthang / mgwt

Automatically exported from code.google.com/p/mgwt
Other
0 stars 0 forks source link

Showcase dosn't run with last snapshot. #316

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Last week, showcase compiled and run fine on my android device (galaxy nexus).

But yesterday, I have saw that it dosn't anymore.

My first investigations show me that there are in the pom.xml  : 
<code>
<dependency>
    <groupId>com.googlecode.mgwt</groupId>
    <artifactId>mgwt</artifactId>
    <version>1.2.0-SNAPSHOT</version>
</dependency> 
</code>

And I see that I have 2 versions of the mgwt library in SNAPSHOT : 
  - mgwt-1.2.0-20130228.213923-25.jar
  - mgwt-1.2.0-20131207.062839-26.jar

I have simply replace the dependency with this one : 
<code>
<dependency>
    <groupId>com.googlecode.mgwt</groupId>
    <artifactId>mgwt</artifactId>
    <version>1.2.0-20130228.213923-25</version>
</dependency> 
</code>
Then all work fine again.

I'll add the error message on my android device soon.

Original issue reported on code.google.com by quent57@gmail.com on 9 Dec 2013 at 7:00

GoogleCodeExporter commented 8 years ago
The error message is :
uncaught: 2 exceptions caught: 
(String) 
@com.google.gwt.user.client.impl.DOMImplStandard::sinkBitlessEventImpl(Lcom/goog
le/gwt/user/client/Element;Ljava/lang/String;)([JavaScript object(44), string: 
'webkitAnimationEnd']): Trying to sink unknown event type webkitAnimationEnd;
(String) 
@com.google.gwt.user.client.impl.DOMImplStandard::sinkBitlessEventImpl(Lcom/goog
le/gwt/user/client/Element;Ljava/lang/String;)([JavaScript object(29), string: 
'webkitAnimationEnd']): Trying to sink unknown event type webkitAnimationEnd

Original comment by quent57@gmail.com on 10 Dec 2013 at 9:15

GoogleCodeExporter commented 8 years ago
I got the same errors while setting up the showcase. Changing the version of 
the dependency to 1.1.2 solved the problem, and the showcase renders just fine.

<code>
<dependency>
    <groupId>com.googlecode.mgwt</groupId>
    <artifactId>mgwt</artifactId>
    <version>1.1.2</version>
</dependency> 
</code>

Original comment by mailanno...@gmail.com on 25 Dec 2013 at 7:30

GoogleCodeExporter commented 8 years ago
I have follow your tips. But it not work. 
When I replace with <version>1.2.0-20130228.213923-25</version> in pom file. 
maven don't found it. When I replace with <version>1.1.2</version> it can 
download but project has error (Class Slider not fount in gwt library).

Any help?

Original comment by phapli1...@gmail.com on 11 Feb 2014 at 6:13

GoogleCodeExporter commented 8 years ago
I have follow your tips. But it not work. 
When I replace with <version>1.2.0-20130228.213923-25</version> in pom file. 
maven don't found it. When I replace with <version>1.1.2</version> it can 
download but project has error (Class Slider not fount in gwt library).

Any help?

Original comment by phapli1...@gmail.com on 11 Feb 2014 at 6:13

GoogleCodeExporter commented 8 years ago

Original comment by kurka.da...@gmail.com on 13 Jul 2014 at 5:02