package org.briarproject.api.system; public interface LocationUtils { /** * Get the country the device is currently located in, or "" if it cannot * be determined. Should never return {@code null}. *
* The country codes are formatted upper-case and as per ISO 3166-1 alpha 2. */ String getCurrentCountry(); }