Update libgdx to 1.5.0, now including binary library files.

This commit is contained in:
elcnesh
2014-12-12 10:44:19 +00:00
parent 9283328e22
commit 691fd67b9c
30 changed files with 13 additions and 7 deletions

View File

@@ -23,5 +23,8 @@
</attributes>
</classpathentry>
<classpathentry kind="lib" path="minlog-1.2.jar"/>
<classpathentry kind="lib" path="libs/gdx-backend-robovm.jar"/>
<classpathentry kind="lib" path="/forge-gui-mobile/libs/gdx-freetype.jar"/>
<classpathentry kind="lib" path="/forge-gui-mobile/libs/gdx.jar" sourcepath="/forge-gui-mobile/libs/gdx-sources.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -79,7 +79,7 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-robovm</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
</dependency>
</dependencies>
</project>

View File

@@ -31,6 +31,7 @@
<pattern>org.apache.xalan.processor.TransformerFactoryImpl</pattern>
<pattern>java.util.logging.**</pattern>
<pattern>com.esotericsoftware.minlog.Log</pattern>
<pattern>com.badlogic.gdx.**</pattern>
</forceLinkClasses>
<libs>
<lib>libs/libgdx.a</lib>

View File

@@ -41,12 +41,12 @@ public class Main extends IOSApplication.Delegate {
private static final class IOSClipboard implements com.badlogic.gdx.utils.Clipboard {
@Override
public String getContents() {
return UIPasteboard.getGeneral().getString();
return UIPasteboard.getGeneralPasteboard().getString();
}
@Override
public void setContents(final String contents0) {
UIPasteboard.getGeneral().setString(contents0);
UIPasteboard.getGeneralPasteboard().setString(contents0);
}
}