2.1.0 • Published 3 years ago

capacitor-gd-app-update v2.1.0

Weekly downloads
-
License
MIT
Repository
gitlab
Last release
3 years ago

This plugin supports retrieving app update information on Android and iOS.
Additionally, this plugin supports in-app updates on Android.

Maintainers

MaintainerGitHubSocial
Robin Genzrobingenz@robin_genz

Sponsors

This is an MIT-licensed open source project. It can grow thanks to the support by these awesome people. If you'd like to join them, please read more here.

Installation

npm install @capawesome/capacitor-app-update
npx cap sync

Android Variables

This plugin will use the following project variables (defined in your app’s variables.gradle file):

  • $androidPlayCore version of com.google.android.play:core (default: 1.9.0)

Configuration

No configuration required for this plugin.

Demo

A working example can be found here: robingenz/capacitor-plugin-demo

Usage

import { AppUpdate } from '@capawesome/capacitor-app-update';

const getCurrentAppVersion = async () => {
  const result = await AppUpdate.getAppUpdateInfo();
  return result.currentVersion;
};

const getAvailableAppVersion = async () => {
  const result = await AppUpdate.getAppUpdateInfo();
  return result.availableVersion;
};

const openAppStore = async () => {
  await AppUpdate.openAppStore();
};

const performImmediateUpdate = async () => {
  const result = await AppUpdate.getAppUpdateInfo();
  if (result.updateAvailability !== AppUpdateAvailability.UPDATE_AVAILABLE) {
    return;
  }
  if (result.immediateUpdateAllowed) {
    await AppUpdate.performImmediateUpdate();
  }
};

const startFlexibleUpdate = async () => {
  const result = await AppUpdate.getAppUpdateInfo();
  if (result.updateAvailability !== AppUpdateAvailability.UPDATE_AVAILABLE) {
    return;
  }
  if (result.flexibleUpdateAllowed) {
    await AppUpdate.startFlexibleUpdate();
  }
};

const completeFlexibleUpdate = async () => {
  await AppUpdate.completeFlexibleUpdate();
};

API

getAppUpdateInfo(...)

getAppUpdateInfo(options?: GetAppUpdateInfoOptions | undefined) => Promise<AppUpdateInfo>

Returns app update informations.

Only available for Android and iOS.

ParamType
optionsGetAppUpdateInfoOptions

Returns: Promise<AppUpdateInfo>


openAppStore(...)

openAppStore(options?: OpenAppStoreOptions | undefined) => Promise<void>

Opens the app store entry of the app in the Play Store (Android) or App Store (iOS).

Only available for Android and iOS.

ParamType
optionsOpenAppStoreOptions

performImmediateUpdate()

performImmediateUpdate() => Promise<AppUpdateResult>

Performs an immediate in-app update.

Only available for Android.

Returns: Promise<AppUpdateResult>


startFlexibleUpdate()

startFlexibleUpdate() => Promise<AppUpdateResult>

Starts a flexible in-app update.

Only available for Android.

Returns: Promise<AppUpdateResult>


completeFlexibleUpdate()

completeFlexibleUpdate() => Promise<void>

Completes a flexible in-app update by restarting the app.

Only available for Android.


addListener('onFlexibleUpdateStateChange', ...)

addListener(eventName: 'onFlexibleUpdateStateChange', listenerFunc: (state: FlexibleUpdateState) => void) => PluginListenerHandle

Adds a flexbile in-app update state change listener.

Only available for Android.

ParamType
eventName'onFlexibleUpdateStateChange'
listenerFunc(state: FlexibleUpdateState) => void

Returns: PluginListenerHandle


removeAllListeners()

removeAllListeners() => Promise<void>

Remove all listeners for this plugin.


Interfaces

AppUpdateInfo

PropTypeDescription
currentVersionstringVersion code (Android) or CFBundleShortVersionString (iOS) of the currently installed app version. Only available for Android and iOS.
availableVersionstringVersion code (Android) or CFBundleShortVersionString (iOS) of the update. Only available for Android and iOS.
availableVersionReleaseDatestringRelease date of the update in ISO 8601 (UTC) format. Only available for iOS.
updateAvailabilityAppUpdateAvailabilityThe app update availability. Only available for Android and iOS.
updatePrioritynumberIn-app update priority for this update, as defined by the developer in the Google Play Developer API. Only available for Android.
immediateUpdateAllowedbooleantrue if an immediate update is allowed, otherwise false. Only available for Android.
flexibleUpdateAllowedbooleantrue if a flexible update is allowed, otherwise false. Only available for Android.
clientVersionStalenessDaysnumberNumber of days since the Google Play Store app on the user's device has learnt about an available update if an update is available or in progress. Only available for Android.
installStatusFlexibleUpdateInstallStatusFlexible in-app update install status. Only available for Android.
minimumOsVersionstringThe minimum version of the operating system required for the app to run in iOS. Only available for iOS.

GetAppUpdateInfoOptions

PropTypeDescription
countrystringThe two-letter country code for the store you want to search. See http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 for a list of ISO Country Codes. Only available for iOS.

OpenAppStoreOptions

PropTypeDescription
countrystringThe two-letter country code for the store you want to search. See http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 for a list of ISO Country Codes. Only available for iOS.

AppUpdateResult

PropType
codeAppUpdateResultCode

PluginListenerHandle

PropType
remove() => Promise<void>

FlexibleUpdateState

PropTypeDescription
installStatusFlexibleUpdateInstallStatusFlexible in-app update install status.
bytesDownloadednumberReturns the number of bytes downloaded so far. undefined if the install status is other than DOWNLOADING.
totalBytesToDownloadnumberReturns the total number of bytes to be downloaded for this update. undefined if the install status is other than DOWNLOADING.

Enums

AppUpdateAvailability

MembersValue
UNKNOWN0
UPDATE_NOT_AVAILABLE1
UPDATE_AVAILABLE2
UPDATE_IN_PROGRESS3

FlexibleUpdateInstallStatus

MembersValue
UNKNOWN0
PENDING1
DOWNLOADING2
INSTALLING3
INSTALLED4
FAILED5
CANCELED6
DOWNLOADED11

AppUpdateResultCode

MembersValueDescription
OK0The user has accepted the update.
CANCELED1The user has denied or cancelled the update.
FAILED2Some other error prevented either the user from providing consent or the update to proceed.
NOT_AVAILABLE3No update available.
NOT_ALLOWED4Update type not allowed.
INFO_MISSING5App update info missing. You must call getAppUpdateInfo() before requesting an update.

Test with internal app-sharing

The Android Developers documentation describes how to test in-app updates using internal app sharing: https://developer.android.com/guide/playcore/in-app-updates/test

Changelog

See CHANGELOG.md.

License

See LICENSE.

2.1.0

3 years ago