Wasp

Android Network Solution

License

License

GroupId

GroupId

com.orhanobut
ArtifactId

ArtifactId

wasp
Last Version

Last Version

1.13
Release Date

Release Date

Type

Type

aar
Description

Description

Wasp
Android Network Solution
Project URL

Project URL

https://github.com/orhanobut/wasp
Source Code Management

Source Code Management

https://github.com/orhanobut/wasp

Download wasp

How to add to project

<!-- https://jarcasting.com/artifacts/com.orhanobut/wasp/ -->
<dependency>
    <groupId>com.orhanobut</groupId>
    <artifactId>wasp</artifactId>
    <version>1.13</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.orhanobut/wasp/
implementation 'com.orhanobut:wasp:1.13'
// https://jarcasting.com/artifacts/com.orhanobut/wasp/
implementation ("com.orhanobut:wasp:1.13")
'com.orhanobut:wasp:aar:1.13'
<dependency org="com.orhanobut" name="wasp" rev="1.13">
  <artifact name="wasp" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.orhanobut', module='wasp', version='1.13')
)
libraryDependencies += "com.orhanobut" % "wasp" % "1.13"
[com.orhanobut/wasp "1.13"]

Dependencies

compile (4)

Group / Artifact Type Version
com.google.code.gson : gson jar 2.3
com.squareup.okhttp : okhttp jar 2.2.0
com.mcxiaoke.volley : library jar 1.0.16
io.reactivex : rxandroid Optional jar 0.25.0

Project Modules

There are no modules declared in this project.

Android Arsenal API Join the chat at https://gitter.im/orhanobut/wasp

Deprecated

Unfortunately due to many reasons including maintenance cost, this library is deprecated. I recommend to use Retrofit/OkHttp instead. Currently this project only aims to provide some experimental functionalities.

Wasp

A compact and easy to use, 'all-in-one' network solution.

The problem

When it comes to daily development, you need more than just a library to handle networking, you need to handle mocking calls, using multiple end points, handling certificates and cookies and many other boiler plate code. With wasp, you can easily handle everything.

Wasp internally uses:

  • Volley for the network stack
  • Gson for parsing
  • OkHttp for the http stack

Wasp provides:

  • Easy implementation
  • MOCK response via text file or auto generated from model class!
  • Request Interceptors to add attributes (query params, headers, retry policy) to each call
  • Api call based headers
  • Api call based end point
  • Api call based retry policy
  • Cookie management
  • Certificate management
  • Painless Image loading
  • RxJava support
  • Request cancelation
  • Sync request call
  • Async request call

Wasp aims :

  • There are many open issues to contribute. Get this chance to contribute and improve your knowledge!
  • We want to make something that is useful and also motivates people to contribute

Add dependency

More info https://jitpack.io/#orhanobut/wasp/1.15

repositories {
  // ...
  maven { url "https://jitpack.io" }
}

dependencies {
  compile 'com.github.orhanobut:wasp:1.15'
}

Create a service interface

public interface GitHubService {

  // Async call
  @GET("/repos/{id}")
  void getRepo(@Path("id") String id, Callback<Repo> callback);
  
  // Async call with WaspRequest (cancelable)
  @GET("/repos/{id}")
  WaspRequest getRepo(@Path("id") String id, Callback<Repo> callback);
    
  // Rx
  @Mock
  @POST("/repos")
  Observable<Repo> createRepo(@Body Repo repo);
  
  // sync call
  @GET("/users/{id}")
  User getUser(@Path("id") String id);
}

Initialize the wasp

GitHubService service = new Wasp.Builder(this)
  .setEndpoint("https://api.github.com")
  .setRequestInterceptor                     // Optional
  .trustCertificates                         // Optional
  .setHttpStack                              // Optional
  .enableCookies                             // Optional
  .setNetworkMode(NetworkMode.MOCK)          // Optional(Used for Mock)
  .build()
  .create(GitHubService.class);

And use it everywhere!

Async

service.getRepo(id, new Callback<Repo>{

  @Override
  public void onSuccess(Response response, Repo repo) {
    // do something
  }
  
  @Override
  public void onError(WaspError error) {
    // handle error
  }
});

Async with WaspRequest (cancelable)

WaspRequest request = service.getRepo(id, new Callback<Repo>{

  @Override
  public void onSuccess(Response response, Repo repo) {
    // do something
  }
  
  @Override
  public void onError(WaspError error) {
    // handle error
  }
});
request.cancel();  //cancels the request

Rx

Observable<Repo> observable = service.createRepo(repo);

Sync

User user = service.getUser(id);

Check wiki for more details

License

Copyright 2014 Orhan Obut

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.

Versions

Version
1.13
1.12
1.11
1.10
1.9
1.8