/GeoLocationApi

Geo Location api library android

Primary LanguageKotlin

GeoLocationApi

IP-API(http://ip-api.com/json) send request for Android platform using Retrofit and kotlin. Get your geographic location information. Ip adress, country, country code etc

HOW TO USE

Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
        implementation 'com.github.UtkuGlsvn:GeoLocationApi:1.0'
}

Kotlin Example

class MainActivity : AppCompatActivity(), ResponseListener {

override fun onSuccessResult(obj: IpApiModel) {
    txtViewCountry.text=obj.country
    txtViewIp.text=obj.ipQuery
    txtViewCountryCode.text=obj.countryCode
    txtViewCity.text=obj.city
    txtViewRegion.text=obj.region.toString()
}


override fun onErrorResult(msg: String) {
    Log.e("error", msg)
}

Kotlin Example Full Code

Java Example

public class MainActivityJava extends AppCompatActivity implements ResponseListener {

@Override
public void onSuccessResult(@NotNull IpApiModel obj) {
    runOnUiThread(new Runnable() {
        @Override
        public void run() {
            txtViewCountry.setText(obj.getCountry());
            txtViewIp.setText(obj.getIpQuery());
            txtViewCountryCode.setText(obj.getCountryCode());
            txtViewRegion.setText(obj.getRegionName());
            txtViewCity.setText(obj.getCity());
        }
    });
}

@Override
public void onErrorResult(@NotNull String msg) {
    Log.e("error", msg);
}

Java Example Full Code