Extra components of the org.cufy.http
for comfort in android.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
//import the `org.cufy.http` library
//replace TAG with the needed version.
implementation 'org.cufy:http:TAG'
//import this library
//replace TAG with the needed version.
implementation 'org.cufyx:http:TAG'
}
XClient.client(context)
.request(r -> r
.setUri("http://example.com")
)
.onh(Client.CONNECTED, (client, response) -> {
//already in UI thread
Toast.makeText(client.getContext(), response.getReasonPhrase().toString(), Toast.LENGTH_LONG).show();
})
.onh(Client.DISCONNECTED, (client, exception) -> {
Toast.makeText(client.getContext(), exception.getMessage(), Toast.LENGTH_LONG).show();
})
.connect();
- E-Mail: lsafer@cufy.org
Copyright 2021 Cufy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.