AyogoHealth / cordova-plugin-update-notifier

Cordova plugin for showing a notification for app updates.
Apache License 2.0
27 stars 10 forks source link

Update to support Android SDK 34 #24

Closed dpogue closed 9 months ago

dpogue commented 9 months ago

This is required to support Android SDK 34, but has the side effect of not (by default) being compatible with any SDK version lower than 34 because Google aggressively pushes AndroidX updates that require newer APIs.

To overcome this, the gradle dependency versions are now pulled out into install variables, so you can do something like this to get a working version for the SDK that you're targeting:

npx cordova plugin add cordova-plugin-update-notifier \
    --variable ANDROIDX_MATERIAL_DESIGN_VERSION=1.8.0

Because this causes breakage, it'll have to be a major version bump and have some documentation added to the README about it.

Fixes #23.