Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.androdocs:Simple-HTTP-Request:v1.0'
}
class webTask extends AsyncTask<String, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
....
}
protected String doInBackground(String... args) {
String response = HttpRequest.excuteGet("https://www.androdocs.com/files/uploads/original/sample-json-data-1567767983.txt");
return response;
}
@Override
protected void onPostExecute(String result) {
....
}
}