Skip to main content
Get your Flutter app connected to social.plus in just a few steps. This guide covers everything from installation to your first authenticated session.

Requirements

  • Flutter 3.0.0 - 4.0.0
  • Dart 3.0.0+
  • iOS 9.0+ / Android 4.4 (API 19)+

Installation

Add the social.plus SDK to your pubspec.yaml:
dependencies:
  flutter:
    sdk: flutter
  amity_sdk: ^x.y.z  # Check latest version
Run the installation command:
flutter pub get
Find the latest version on pub.dev.

Next Steps

Authentication Guide

Learn about session management and secure authentication flows

Chat Features

Start building chat and messaging features

Social Features

Add posts, feeds, and social interactions

Video Streaming

Implement live video and streaming features

Troubleshooting

Package not found: Make sure you’ve added the correct package name to pubspec.yamlVersion conflicts: Use flutter pub deps to check for dependency conflictsBuild errors: Run flutter clean and flutter pub get to refresh dependencies
iOS build fails: Ensure minimum iOS version is set to 9.0+Android build fails: Check that minimum SDK is set to 19+
SDK not initialized: Make sure you call AmityCoreClient.setup() before using any SDK featuresAuthentication failures: Verify your API key and region settingsSession state issues: Ensure you’re properly listening to session state changes