Wasp


Source link: https://github.com/orhanobut/wasp

#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. 

Resources

A simple, minimalistic and beautiful dialog color picker for Android 4.1+ devices. This color picker is easy-to-use and easy-to-integrate in your application to let users of your app choose color in a simple way.

Features:

  • Get Hex and (A)RGB color codes
  • Set color using (A)RGB values and get HEX codes
  • Set color using HEX value
  • Separate UI for portrait and landscape devices
  • Support for pre-lollipop devices

ExpandingCollection is a card peek/pop controller.

A simple stock charting library for Android, supporting time-line, k-line, macd, kdj, rsi, boll index, and interactive gesture operation, including left and right sliding to refresh, scaling, highlighting.

Easily build big and bigger forms with minimal effort.

This library aids in building bigger forms on-the-fly. Forms with large number of elements can easily be added programmatically within a few minutes.

Features:

  • Easily build big and bigger forms with minimal effort
  • Fast color change as needed

This project helps you detect network state with effective way with RxJava.

Save your Gson object to Android Shared Preferences*

Imagine you have plenty of static data in JSON, and you have to save it to application state. Then this lib is suitable for you.

See Wiki for full docs : https://github.com/hynra/GSON-SharedPreferences/wiki

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes