stefanbanu
stefanbanu

Reputation: 53

Line 22: No source code is available for type in html libgdx

i'm trying to run html libgdx project, where i have a splash screen that uses tweenengine

[ERROR] Line 22: No source code is available for type aurelienribon.tweenengine.TweenManager

any idea how to fix this? thanks

Upvotes: 0

Views: 134

Answers (1)

Tahir Akhtar
Tahir Akhtar

Reputation: 11625

GWT requires java source code files of all client-side dependencies so it can run those through it's Java-to-Javascript compiler.

Have you included TweenEngine jar file in your libgdx project? Make sure that the jar includes the source (*.java) files.

Upvotes: 2

Related Questions