✨Works out of the box guarantee. If you face any issue at all, hit us up on Telegram and we will write the integration for you.
logoReclaim Protocol Docs
Flutter SDK

Installation

Flutter SDK for Reclaim Protocol

Prerequisites

  • An Android device or emulator running Android 5.0 or later.

Get an API Key

Setup your project using the Get API Key guide.

Installation

Using Flutter CLI

flutter pub add https://github.com/reclaimprotocol/reclaim-inapp-flutter-sdk.git

Manual Installation

Add the following to your pubspec.yaml:

dependencies:
  reclaim_inapp_flutter_sdk:
    git:
      url: https://github.com/reclaimprotocol/reclaim-inapp-flutter-sdk.git
      ref: 0.15.0

Then run:

flutter pub get

Platform-Specific Configuration

Android Configuration

Minimum Requirements

Update your android/app/build.gradle:

android {
    defaultConfig {
        minSdkVersion 24
        targetSdkVersion 36
    }
}

iOS Configuration

Update your ios/Podfile:

platform :ios, '14.0'

Update Environment Variables for XCScheme

To use Reclaim InAppSdk in your project, follow the Usage guide.

On this page