Skip to content

Commit

Permalink
Updated ip check endpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpartanJ committed Mar 25, 2019
1 parent 8abda23 commit 815c763
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public class IpRequest extends BaseJsonRequest
{
public IpRequest( JSONObject parameters, Map<String, String> headers, Response.Listener<JSONObject> listener, Response.ErrorListener errorListener )
{
super( Method.GET, "https://ip.ensoft-dev.com/?f=json", parameters, headers, listener, errorListener );
super( Method.GET, "https://ip.ensoft.dev/?f=json", parameters, headers, listener, errorListener );
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public class IpRequest extends BaseJsonRequest
{
public IpRequest( JSONObject parameters, Map<String, String> headers, Response.Listener<JSONObject> listener, Response.ErrorListener errorListener )
{
super( Method.GET, "https://ip.ensoft-dev.com/?f=json", parameters, headers, listener, errorListener );
super( Method.GET, "https://ip.ensoft.dev/?f=json", parameters, headers, listener, errorListener );
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
Expand Down
2 changes: 1 addition & 1 deletion restafari/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

def versionMajor = 0
def versionMinor = 3
def versionPatch = 4
def versionPatch = 40

android {
compileSdkVersion 28
Expand Down

0 comments on commit 815c763

Please sign in to comment.