An open API service indexing awesome lists of open source software.

https://github.com/gleapsdk/gleap_http_interceptor


https://github.com/gleapsdk/gleap_http_interceptor

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Gleap Http Interceptor

![Gleap Flutter SDK Intro](https://raw.githubusercontent.com/GleapSDK/iOS-SDK/main/imgs/gleapheader.png)

A Http Interceptor for the [Gleap SDK](https://pub.dev/packages/gleap_sdk).

# Report and Fix Bugs the Easy Way

Gleap helps developers build the best software faster. It is your affordable in-app bug reporting tool for apps, websites and industrial applications.

Checkout our [website](https://gleap.io) to learn more about gleap.

## Docs & Examples

Checkout our [documentation](https://docs.gleap.io/docs/flutter-sdk) for full reference. Include the following dependency in your pubspec.yml:

```dart
dependencies:
gleap_http_interceptor: "^1.2.4"
```

**Flutter v2 Support**

If you are using Flutter < v3, please import the gleap_sdk as shown below:

```dart
dependencies:
gleap_dio_interceptor:
git:
url: https://github.com/GleapSDK/gleap_http_interceptor.git
ref: flutter-v2

```

```dart
Client client = InterceptedClient.build(interceptors: [
GleapHttpInterceptor(),
]);

client.get(Uri.parse("https://example.com"));
```