rkuenzi-epfl/Wnder

View on GitHub
app/src/main/java/com/github/wnder/networkService/NetworkService.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.github.wnder.networkService;

public interface NetworkService {
    /**
     * Checks if the phone has connection
     * @return true if there is network service
     */
    boolean isNetworkAvailable();
}