add the ability for briar-android to get the current country.

- this will be useful later for e.g. auto-disabling Tor
This commit is contained in:
Ximin Luo
2014-02-06 19:16:04 +00:00
parent 39b7a97267
commit 9697b351e9
4 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package org.briarproject.api.system;
public interface LocationUtils {
/** Get the country the device is currently-located in. */
String getCurrentCountry();
}