Merlin Library

Observes network connection status & gives callbacks

License

License

GroupId

GroupId

com.github.semoncat.merlin
ArtifactId

ArtifactId

library
Last Version

Last Version

0.5
Release Date

Release Date

Type

Type

aar
Description

Description

Merlin Library
Observes network connection status & gives callbacks
Project URL

Project URL

https://github.com/novoda/merlin
Source Code Management

Source Code Management

https://github.com/novoda/merlin

Download library

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.semoncat.merlin/library/ -->
<dependency>
    <groupId>com.github.semoncat.merlin</groupId>
    <artifactId>library</artifactId>
    <version>0.5</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.semoncat.merlin/library/
implementation 'com.github.semoncat.merlin:library:0.5'
// https://jarcasting.com/artifacts/com.github.semoncat.merlin/library/
implementation ("com.github.semoncat.merlin:library:0.5")
'com.github.semoncat.merlin:library:aar:0.5'
<dependency org="com.github.semoncat.merlin" name="library" rev="0.5">
  <artifact name="library" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.github.semoncat.merlin', module='library', version='0.5')
)
libraryDependencies += "com.github.semoncat.merlin" % "library" % "0.5"
[com.github.semoncat.merlin/library "0.5"]

Dependencies

compile (1)

Group / Artifact Type Version
com.github.kevinsawicki : http-request jar +

Project Modules

There are no modules declared in this project.

Merlin header image

Merlin Build status Download License

Merlin aims to simplify network monitoring. Providing 3 registerable callbacks for network connectivity changes. onConnect() , onDisconnect() and onBind(NetworkStatus networkStatus).

Adding to your project

To start using Merlin, add these lines to your module's build.gradle:

repositories {
    jcenter()
}

dependencies {
    implementation 'com.novoda:merlin:1.2.0'
}

Optional steps

Note: these steps should not be necessary as the Manifest Merger should be taking care of this for you!

If for some reason your app's manifest doesn't end up containing the required entries, and you encounter issues, you might need to manually add a few things to your AndroidManifest.xml:

  1. These permissions:

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  2. This service:

    <service
      android:exported="false"
      android:name="com.novoda.merlin.MerlinService" />

Sample usage

Create Merlin:

merlin = new Merlin.Builder().withConnectableCallbacks().build(context);

Bind and unbind the service in your activity:

@Override
protected void onResume() {
    super.onResume();
    merlin.bind();
}

@Override
protected void onPause() {
    merlin.unbind();
    super.onPause();
}

Register for callbacks:

merlin.registerConnectable(new Connectable() {
    @Override
    public void onConnect() {
        // Do something you haz internet!
    }
});

For further details you can check the wiki.

Migrating from pre-v1 versions

Version 1 of Merlin introduced several breaking changes in the implementation and the APIs, to account for the latest changes in Android N+. Please follow the instructions in the wiki to make the upgrade as painless as possible.

Migrating from 1.1.7

In version 1.1.8 some public API changes were made. According to our tests auto importing should be able to take care of these changes.

RxJava support in v1.0+

Starting in version 1.0.0, the RxJava support is no longer built into the library but it has been split out into a separate artifact. You'll need to add one of these two dependencies, depending on the version of RxJava you use:

// For RxJava 1.x
implementation 'com.novoda:merlin-rxjava:[version_number]'

// For RxJava 2.x
implementation 'com.novoda:merlin-rxjava2:[version_number]'

Links

Here are a list of useful links:

  • We always welcome people to contribute new features or bug fixes, here is how
  • If you have a problem check the Issues Page first to see if we are working on it
  • For further usage or to delve more deeply checkout the Project Wiki
  • Looking for community help, browse the already asked Stack Overflow Questions or use the tag: support-merlin when posting a new question
com.github.semoncat.merlin

Novoda

Versions

Version
0.5