Skip to main content

Migrating to v2.0

This latest release brings a number of updates to the extension particularly around the Android integration.

The Android implementation has been updated to v8.22.0 and we have moved to using Android gradle dependencies within our extensions, which will improve dependency resolution, reduce update times and improve compatibility with other extensions. (This update also addresses the Android 35 requirement for Play Billing v7).

The iOS implementation has been updated to v5.33.1 which should bring a range of bug fixes and improvements.

Android Integration

We have moved to using gradle dependencies within our extensions which will improve dependency resolution, reduce update times and improve compatibility with other extensions. This also reduces the amount of work required to manually integrate the extensions, reducing the additions to the manifest in your application descriptor.

We highly recommend using the apm tool to manage the integration of the extensions in your application and to generate your application descriptor:

apm update
apm generate app-descriptor

This will automatically update your application descriptor with the required manifest entries and gradle dependencies.

Updating code

There should be no changes to your code required for this update.

iOS Integration

Make sure you have set the minimum iOS version to 13.0 in your application descriptor InfoAdditions section:

<key>MinimumOSVersion</key>
<string>13.0</string>