versionarte 1.0.0 copy "versionarte: ^1.0.0" to clipboard
versionarte: ^1.0.0 copied to clipboard

Force update, show update indicator and disable the app for maintenance with total freedom over the UI.

versionarte #

Force update, show update indicator and disable the app for maintenance with total freedom over the UI.

cover_picture

Features can be implemented with versionarte:

  • βœ‹ Force users to update to the latest version
  • πŸ’†πŸ»β€β™‚οΈ Have separate values for each platform
  • 🚧 Disable app for maintenance with custom informative text
  • πŸ†• Inform users about an optional update availability
  • πŸ”— Launch the App Store on iOS and Play Store on Android

πŸš€ Getting Started #

Add the package to your pubspec.yaml file:

dependencies:
  versionarte: <latest_version>

Import the package in your Dart code:

import 'package:versionarte/versionarte.dart';

πŸ“‘ Obtain the status #

Call Versionarte.check method by providing it a VersionarteProvider (an object responsible for fetching the versioning information from a remote service) to get a VersionarteResult (an object containing app's versioning and availability information).

There are 2 built-in providers, RemoteConfigVersionarteProvider and RestfulVersionarteProvider, which fetches the versioning information from Firebase Remote Config and RESTful API respectively. You can also create your own custom provider by extending the VersionarteProvider class.

1. Using Firebase Remote Config #

The RemoteConfigVersionarteProvider fetches information stored in Firebase Remote Config with the key name of "versionarte". You need to set up the Firebase Remote Config service before using this provider. See Firebase Remote Config setup guide to learn more about configuration.

Example:

final result = await Versionarte.check(
    versionarteProvider: RemoteConfigVersionarteProvider(),
);

Optional parameters:

  • keyName: key name for the Firebase Remote Config to fetch. By default, it's set to "versionarte". Specify if you upload the configuration JSON using a different key name.
  • initializeInternally: if your project already initializes and configures Firebase Remote Config, set this to false. By default, it's set to true.
  • remoteConfigSettings: settings for Firebase Remote Config if initializeInternally set to true. By default, fetchTimeout and minimumFetchInterval are set to 10 seconds.

2. Using RESTful API #

The RestfulVersionarteProvider fetches versioning and availability information by sending HTTP GET request to the specified URL with optional headers. The response body should be a JSON string that follows the configuration JSON format.

Example:

final result = await Versionarte.check(
    versionarteProvider: RestfulVersionarteProvider(
        url: 'https://myapi.com/getVersioning',
    ),
);

Optional parameters:

  • headers: headers to send with the HTTP GET request. By default, it's set to an empty map.

3. Using custom VersionarteProvider #

To use remote services to provide versioning and availability information of your app, extend the VersionarteProvider class and override the getStoreVersioning method which is responsible for fetching the information and returning it as a StoreVersioning object.

class MyCustomVersionarteProvider extends VersionarteProvider {
  @override
  Future<StoreVersioning> getStoreVersioning() async {
    final result = MyCustomService.fetchVersioning();

    final decodedResult = jsonDecode(result);

    return StoreVersioning.fromJson(decodedResult);
  }

Example:

final result = await Versionarte.check(
    versionarteProvider: MyCustomVersionarteProvider(),
);

🎯 Handle the status #

Obtained VersionarteResult has 3 parameters:

  • status: (VersionarteResult) the status of the app. It can be one of the following values:
    • VersionarteStatus.inactive: the app is inactive for usage.
    • VersionarteStatus.forcedUpdate: user must update before continuing.
    • VersionarteStatus.outdated: user can continue with and without updating.
    • VersionarteStatus.upToDate: the user's version is up to date.
    • VersionarteStatus.unknown: error occured while checking status.
  • details: (StorePlatformDetails) Details for the current platform, including messages for when the app is inactive.

Then, based on status do the if-else checks:

if (result.status == VersionarteResult.inactive) {
    final message = result.details.status.getMessageForLanguage('en');
    // TODO: Handle the case where the app is inactive
} else if (result == VersionarteResult.forcedUpdate) {
    // TODO: Handle the case where an update is required
} else if (result == VersionarteResult.upToDate) {
    // TODO: Handle the case where an update is optional
} 

πŸ”— Launching the stores #

To launch the App Store on iOS and Play Store on Android, use the Versionarte.launchStore method by providing it with appStoreUrl for App Store and androidPackageName for Play Store.

Versionarte.launchStore(
    appStoreUrl: 'https://apps.apple.com/az/app/librokit-books-quotes-ai/id6472595860',
    androidPackageName: 'app.librokit',
);

πŸ’‘ androidPackageName is optional: if not provided corresponding value obtained from package_info will be used. πŸ’‘ Launching store won't work on iOS simulator due to its limitations.

See the example directory for a complete sample app.

πŸ–‹οΈ Configuration JSON #

For providing app's status and availability information, versionarte requires a specific JSON format. Whether you're using RemoteConfigVersionarteProvider, RestfulVersionarteProvider, or a custom VersionarteProvider, make sure to use this JSON format.

πŸ’‘ Information for all platforms in the JSON is not necessary: you can provide information for only one platform, or for two platforms, or for all three platforms.
πŸ’‘ While the app status is active, the message can be left empty or set to null.

{
    "android": {
        "version": {
            "minimum": "2.7.0",
            "latest": "2.8.0"
        },
        "status": {
            "active": true,
            "message": {
                "en": "App is in maintanence mode, please come back later.",
                "es": "La aplicaciΓ³n estΓ‘ en modo de mantenimiento, vuelva mΓ‘s tarde."
            }
        }
    },
    "iOS": {
        // same data we used for "android"
    }
    "macOS": {
        // same data we used for "android"
    }
}

This JSON represents information stored separately for three platforms, containing the minimum and latest versions, and the availability status.

Each platform contains two objects:

  • version:
    • minimum: The minimum version of the app users can use.
    • latest: The latest version of the app available.
  • status:
    • active: A boolean that indicates whether the app is currently active or not.
    • message: A Map that contains the messages for different languages to be displayed to the user when app is inactive. The keys of the map represent the language codes (e.g., "en" for English, "es" for Spanish), and the values represent the message in that language.

🐞 Faced issues? #

If you encounter any problems or you feel the library is missing a feature, please raise a ticket on GitHub and I'll look into it.

πŸ“ƒ License #

MIT License

56
likes
130
pub points
76%
popularity
screenshot

Publisher

verified publisherkamranbekirov.com

Force update, show update indicator and disable the app for maintenance with total freedom over the UI.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

firebase_remote_config, flutter, http, package_info_plus, pub_semver, url_launcher

More

Packages that depend on versionarte