Skip to content

Commit

Permalink
Upgrade MobiVM to 2.3.21 and add Xcode15 support
Browse files Browse the repository at this point in the history
  • Loading branch information
obigu committed Mar 8, 2024
1 parent 3d8cfb8 commit f9a57a9
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[1.12.2-SNAPSHOT]
- [BREAKING CHANGE] GWT: Updated to 2.10.0. `com.google.jsinterop:jsinterop-annotations:2.0.2:sources` must be added as a dependency to your html project dependencies.
- [BREAKING CHANGE] Android: Minimum API level is now level 19 (Android 4.4)
- iOS: Update to MobiVM 2.3.21
- Fixed GlyphLayout for fixed width glyph offsets at the start and end of lines.
- Fixed scene2d.ui layout for fractional positions and sizes.
- libGDX is now built using Java 17 due to Gradle 8 requirements.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
<target>ios</target>
<iosInfoPList>Info.plist.xml</iosInfoPList>
<treeShaker>conservative</treeShaker>
<tools>
<linker>
<flags>
<flag>-ld_classic</flag>
</flags>
</linker>
</tools>
<resources>
<resource>
<directory>../%ASSET_PATH%</directory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class DependencyBank {
static String libgdxVersion = "1.12.1";
// Temporary snapshot version, we need a more dynamic solution for pointing to the latest nightly
static String libgdxNightlyVersion = "1.12.2-SNAPSHOT";
static String roboVMVersion = "2.3.20";
static String roboVMVersion = "2.3.21";
static String buildToolsVersion = "33.0.2";
static String androidAPILevel = "33";
static String androidMinAPILevel = "19";
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ext {

versions.java = project.hasProperty("javaVersion") ? Integer.parseInt(project.getProperty("javaVersion")) : 7
versions.javaLwjgl3 = project.hasProperty("javaVersion") ? Integer.parseInt(project.getProperty("javaVersion")) : 8
versions.robovm = "2.3.20"
versions.robovm = "2.3.21"
versions.gwt = "2.10.0"
versions.gwtPlugin = "1.1.29"
versions.jsinteropAnnotations = "2.0.2"
Expand Down
7 changes: 7 additions & 0 deletions tests/gdx-tests-iosrobovm/robovm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
<target>ios</target>
<iosInfoPList>Info.plist.xml</iosInfoPList>
<treeShaker>conservative</treeShaker>
<tools>
<linker>
<flags>
<flag>-ld_classic</flag>
</flags>
</linker>
</tools>
<resources>
<resource>
<directory>../gdx-tests-android/assets</directory>
Expand Down

0 comments on commit f9a57a9

Please sign in to comment.