Gander Versions Save

Gander is a simple in-app HTTP inspector for Android OkHttp clients. Gander intercepts and persists all HTTP requests and responses inside your application, and provides a UI for inspecting their content.

3.1.0

4 years ago

ChangeLog

  • Support for Okhttp4
  • Support UI for Notches

3.0.0

4 years ago

Breaking changes

Gander now needs to specify Storage it is using in on create of application

  @Override
    public void onCreate() {
        super.onCreate();
        // For Persistence (Uses Room to store the calls in DB)
        Gander.setGanderStorage(GanderPersistence.getInstance(this));
        // For In Memory DB (Data retained in memory lost on app close)
        Gander.setGanderStorage(GanderIMDB.getInstance());
    }

ChangeLog

  • Added Different types of storages (Persistence or IMDB)
  • Separated packages for both to avoid unnecessary dependencies for users
  • Added travis check and new code is with 100 % test coverage
  • isolates and separated the code from data model to clear data models from the clutter

2.0.3

4 years ago

Fixed gradle issue in library verions 2.0.0, 2.0.1, 2.0.2 where the library dependencies are not bundled in the aar.

Fixes

updated bintray and maven plugins to support gradle changes implementation and api

2.0.0

4 years ago

Gander is now Moved to AndroidX dependencies

Change Log

Moved to AndroidX Other plugin updates android_tools => 3.4.0, gradle => 5.4.1,..etc Other optimisations

1.4.0

5 years ago

Breaking change showNotification is now separate call not a constructor parameter

Change Log

Add sticky Notification support and redact Header support Updated Okhttp and Retrofit Added dismiss as option to notifications (Sticky Notification handling) Updated documentation Show notification moved separately from constructor

1.3.3

5 years ago

1.2.0

5 years ago
  1. Added formatting for JsonArray.
  2. Added formatting for URLEncodedParams.
  3. More Accurate response times (without interceptors delay).
  4. Search in Request and Response UI enhancements.

1.1.2

5 years ago

Major Bug Fix

Gander No Op package name change

1.1.0

5 years ago

New Powerful Search in Response, Request Performance increase in Search Highlight New Sampler to block many ui updates at same time Complete Code Refactor => naming scheme changed

1.0.6.1

5 years ago

Fix for header with no/empty values