-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from martinstoeckli/feature/auto-sync
Feature/auto sync
- Loading branch information
Showing
56 changed files
with
1,678 additions
and
480 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright © 2018 Martin Stoeckli. | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
using Android.Content; | ||
using Android.Net; | ||
using Android.OS; | ||
using SilentNotes.Services; | ||
|
||
namespace SilentNotes.Android.Services | ||
{ | ||
/// <summary> | ||
/// Implementation of the <see cref="IInternetStateService"/> interface for the Android platform. | ||
/// </summary> | ||
public class InternetStateService : IInternetStateService | ||
{ | ||
private readonly Context _applicationContext; | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the <see cref="InternetStateService"/> class. | ||
/// </summary> | ||
/// <param name="applicationContext">The Android application context.</param> | ||
public InternetStateService(Context applicationContext) | ||
{ | ||
_applicationContext = applicationContext; | ||
} | ||
|
||
/// <inheritdoc/> | ||
public bool IsInternetConnected() | ||
{ | ||
ConnectivityManager connectivity = GetConnectivityManager(); | ||
|
||
if (Build.VERSION.SdkInt >= BuildVersionCodes.M) | ||
{ | ||
NetworkCapabilities capabilities = connectivity.GetNetworkCapabilities(connectivity.ActiveNetwork); | ||
return (capabilities != null) && capabilities.HasCapability(NetCapability.Internet); | ||
} | ||
|
||
NetworkInfo info = connectivity.ActiveNetworkInfo; | ||
return (info != null) && (info.IsConnected); | ||
} | ||
|
||
/// <inheritdoc/> | ||
public bool IsInternetCostFree() | ||
{ | ||
ConnectivityManager connectivity = GetConnectivityManager(); | ||
return !connectivity.IsActiveNetworkMetered; | ||
} | ||
|
||
private ConnectivityManager GetConnectivityManager() | ||
{ | ||
return (ConnectivityManager)_applicationContext.GetSystemService(Context.ConnectivityService); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.