mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
Update libgdx to 1.5.0, now including binary library files.
This commit is contained in:
@@ -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>
|
||||
|
||||
BIN
forge-gui-ios/libs/gdx-backend-robovm.jar
Normal file
BIN
forge-gui-ios/libs/gdx-backend-robovm.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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>
|
||||
@@ -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>
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user