Few cents about my commits

AltPods: pods updated - 1.39.0-SNAPSHOT

|

AltPods were updated to v1.39.0-SNAPSHOT to sync with recent releases.

Updated pods

Updated pods without API changes

These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots maven repo under 1.39.0-SNAPSHOTS version. Source code @github

Updates are not fully tested, please open issue if bug found.

AltPods: pods updated - 1.38.0-SNAPSHOT

|

AltPods were updated to v1.38.0-SNAPSHOT to sync with recent releases.

Updated pods

These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots maven repo under 1.38.0-SNAPSHOTS version. Source code @github

Updates are not fully tested, please open issue if bug found.

AltPods: pods updated - 1.37.0-SNAPSHOT

|

AltPods were updated to v1.37.0-SNAPSHOT to sync with recent releases.

Updated pods

Updated pods without any API changes

These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots maven repo under 1.37.0-SNAPSHOTS version. Source code @github

Updates are not fully tested, please open issue if bug found.

AltPods: pods updated - 1.36.0-SNAPSHOT

|

AltPods: pods updated - 1.35.0-SNAPSHOT

|

AltPods were updated to v1.35.0-SNAPSHOT to sync with recent releases.

Updated pods

These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots maven repo under 1.35.0-SNAPSHOTS version. Source code @github

Updates are not fully tested, please open issue if bug found.

iOS 17 bindings

|

iOS 17

Bindings have been proposed as PR758.
All CocoaTouch APIs were processed based on Xcode15.
This update introduces changes to existing api and this might break existing code. Please open issue/communicate any problem.
Beside existing API update it introduces support for following new frameworks:

  • Background Assets - Schedule background downloads of large assets after app installation, when the app updates, and periodically while the app remains on-device.
  • Cinematic - Integrate playback and editing of assets captured in Cinematic mode into your app.
  • Matter - Communicate with and control smart home devices from a variety of manufacturers.
  • MediaAccessibility - Coordinate the presentation of closed-captioned data for your app’s media files.
  • PHASE (ios 15) - Create dynamic audio experiences in your game or app that react to events and cues in the environment.
  • SensitiveContentAnalysis - Provide a safer experience in your app by detecting and alerting users to nudity in images and videos before displaying them onscreen.

Basic smoke test was performed. New APIs wasn’t changed due huge volume of changes.

AltPods: pods updated - 1.34.0-SNAPSHOT

|

AltPods were updated to v1.34.0-SNAPSHOT to sync with recent releases.

Updated pods

Updated pods without any API changes

These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots maven repo under 1.34.0-SNAPSHOTS version. Source code @github

Updates are not fully tested, please open issue if bug found.

AltPods: pods updated - 1.33.0-SNAPSHOT

|

AltPods were updated to v1.33.0-SNAPSHOT to sync with recent releases.

Updated pods

new frameworks

  • Firebase/Installations
  • Facebook/Gaming Service Kit

Dropped support

  • Kochava SDKs

These pods were pushed to https://oss.sonatype.org/content/repositories/snapshots maven repo under 1.33.0-SNAPSHOTS version. Source code @github

Updates are not fully tested, please open issue if bug found.

BuildType options for Framework target

|

RoboVM application compiled into Framework has known issues running with debugger attached in XCode. In particular, it suffers from NullPointerException that might happen in Java code, even in try/catch section:

    @Method(selector = "hello")
    public static void sayHello() {
        String s = null;
        try {
            s.toString();
        } catch (NullPointerException e) {
            e.printStackTrace();
        }
    }

will cause:

RoboVM handles this case by intercepting SIGSEGV signal. But GDB intercepts EXC_BAD_ACCESS and doesn’t allow it to go System level where it causes SIGSEGV. To co-work with GDB RoboVM includes robovm-debug module that is being linked for Run configuration and does as written in comments:

Experiment 3: XrOS (Vision OS) support

|

Experiment 3 of RoboVMx started to play with additional platforms (such as TvOS). There was an interest for use RoboVM with XrOS project in gitter recently and this looks like a good point to kick off this experiment.
VisionOS SKS are mostly swift based and this a problem to provide bindings to RoboVM. But anyway its good point to just get RoboVM Java VM code running in RxOS environment. And first stage is to allow RoboVM to be available in Xcode project as framework.

How to use