Giter VIP home page Giter VIP logo

android-prince-of-versions's Introduction

Prince of Versions

CircleCI Download

Library checks for updates using configuration from remote or local resource.

Getting via jcenter

implementation 'co.infinum:prince-of-versions:3.0.0'

Features

  • Load update configuration from network resource or from generic stream resource.
  • Accepts custom loader for loading update configuration resource.
  • Use predefined parser for parsing update configuration in JSON format.
  • Accept custom parser for parsing update configuration.
  • Make asynchronous update check and use callback for notifying result.
  • Supports synchronous update check.
  • Loading and verifying versions happens outside of the UI thread.
  • Use thread pool to cap concurrent resource usage.
  • Provides functionality to cancel verification once started.

Default parser and JSON file

If you use default parsers, version in your application and in the JSON configuration has to follow Semantic Versioning. JSON configuration should follow a structure from bellow:

{
	"ios": {
		"minimum_version": "1.2.3",
		"latest_version": {
			"version": "2.4.5",
			"notification_type": "ALWAYS"
		}
	},
	"android": {
		"minimum_version": "1.2.3",
		"minimum_version_min_sdk": 15,
		"latest_version": {
			"version": "2.4.5",
			"notification_type": "ONCE",
			"min_sdk":18
		}
	},
	"meta": {
		"key1": "value1",
		"key2": "value2"
	}
}

The most important part of the configuration for Android applications is android object. All properties in the object are optional.

Property minimum_version specifies the mandatory version of application, eg. if application has version lower than minimum_version - mandatory update will be notified. Semantic of mandatory update is that application has to be updated before any further use. Because of that, if mandatory update exists it will be notified on each update check.

minumum_version_min_sdk represents the minimum Android version a device has to support to be able to update to mandatory version. Eg. If minimum_version_min_sdk is set to 15, a device has to have at least Android version 15 or above to be able to receive an update.

Property latest_version contains object that holds informations about optional update.
version property defines a version of the latest optional update. If application has version lower than version - optional update will be notified.
min_sdk property defines minimum Android version required to be able to update to optional version.
Depending on notification_type property, application can be notified ONCE or ALWAYS. The library handles this for you, and if notification type is set to ONCE, it will notify you only first time for a specific version. In every following check the library would notify onNoUpdate for that specific version. This setting applies only for optional update and has no effect in case of mandatory update. Default value for this property is ONCE.

Key-value pairs under meta key are optional String metadata which any amount can be sent accompanying the required fields.

Examples

Full example application is available here.

Most common usage - loading from network resource

  1. Create a new instance of updater associated with an application context.
PrinceOfVersions updater = new PrinceOfVersions(this);
  1. Create a loader factory for loading from the network passing resource URL.
Loader loader = new NetworkLoader("http://pastebin.com/raw/41N8stUD");
  1. Create a concrete callback to get the update check results by implementing UpdaterCallback interface.
UpdaterCallback callback = new UpdaterCallback() {
    @Override
    public void onNewUpdate(String version, boolean isMandatory, Map<String, String> metadata) {
    }

    @Override
    public void onNoUpdate(Map<String, String> metadata) {
    }

    @Override
    public void onError(Throwable throwable) {
    }
};
  1. Use the updater with previously created loader and callback. Call checkForUpdates method to start asynchronous update check.
PrinceOfVersionsCancelable cancelable = updater.checkForUpdates(loaderFactory, callback);
  1. To cancel the update check, call cancel method available in PrinceOfVersionsCancelable object.

UpdaterCall api

In version 3.0.0 a new UpdaterCall API has been introduced.

  1. Create a new PrinceOfVersionsCall instance.
PrinceOfVersionsCall call = updater.newCall("http://pastebin.com/raw/41N8stUD");

// If you have previously created a Loader instance, you can use it to create a PrinceOfVersionsCall instance.
PrinceOfVersionsCall call = updater.newCall(loader);
  1. If you want to use call in an asynchronous manner - enqueue the call to be executed asynchronously, the result will be returned to your callback on the main thread.
call.enqueue(new UpdaterCallback() {
    @Override
    public void onNewUpdate(String version, boolean isMandatory, Map<String, String> metadata) {
    }

    @Override
    public void onNoUpdate(Map<String, String> metadata) {
    }

    @Override
    public void onError(Throwable throwable) {
    }
});
  1. If you want to use the call in a synchronous manner call the execute method. It returns a Result object containing the version check results.
try {
    Result result = call.execute();
    // result.getStatus() returns MANDATORY, OPTIONAL or NO_UPDATE
    // result.getVersion() returns version of an update
    // result.getMetadata() returns metadata about the update
} catch (Throwable throwable) {
    // handle error
}
  1. To cancel the update check, call cancel method in PrinceOfVersionsCall object.

  2. Be aware that once a call has been executed it cannot be reused, you must create a new instance.

Writing tests

For testing purposes you can create your own Loader instance. For ease of use, StreamLoader object exists in the library. Here is an example of loading a JSON file from raw resource.

  1. Create new instance of updater associated with application context.
PrinceOfVersions updater = new PrinceOfVersions(this);
  1. Create loader factory for creating stream loader by passing new input stream in its constructor.
Loader loader = new StreamLoader(getResources().openRawResource(R.raw.update))

Note: Be aware that once used input stream in StreamLoader is read and closed. For that purpose always create new stream for every update check.

3rd, 4th and 5th step are same as in previous example.

Writing tests

If you write tests with asynchronous version of update check included, you probably want all PrinceOfVersion's work to be executed on main test thread. You can do that by providing Executor instance in update check method. Library includes PrinceOfVersionsDefaultExecutor class for executing update check on separate thread and SingleThreadExecutor for executing update check immediately.

princeOfVersions.checkForUpdates(executor, loader, callback);

Multiple flavors

If your application has multiple product flavors (e.g. paid/free) you might need more than one JSON configuration file. If that is the case, do not forget to set a different URL for each flavor configuration.

R8 / ProGuard

If you are using R8 or ProGuard add the options from this file.

Contributing

Feedback and code contributions are very much welcome. Just make a pull request with a short description of your changes. By making contributions to this project you give permission for your code to be used under the same license.

android-prince-of-versions's People

Contributors

antunflas avatar ikocijan avatar jmarkovic avatar pejna avatar reisub avatar sgruicic avatar skliba avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.