Skip to main content

Import SDK

Environment Requirements

Version >= 5.12.1

  • Dart: >=2.15.0 < 4.0.0
  • Flutter: ≧ 2.5.0

Version < 5.12.1

  • Dart: >= 2.15.0 < 3.0.0
  • Flutter: ≧ 2.5.0

Install SDK

RC provides the SDK in the form of a plugin library on the Flutter platform, which includes both the Dart layer and the Android/iOS platform layer code.

  1. Add dependencies in the project's pubspec.yaml.

    dependencies:
    flutter:
    sdk: flutter

    rongcloud_im_wrapper_plugin: x.y.z
    tip

    Replace x.y.z with the version you want to use. The latest version of the SDK can be checked in the official repository. To clarify the reference relationship between the Flutter SDK version and the native SDK version, starting from the new SDK (rongcloud_im_wrapper_plugin), the first three digits of the Flutter SDK version will match the first three digits of the native SDK version. For example, if the Flutter SDK version is 5.2.4, the native SDK version it uses will also be 5.2.4. And vice versa.

  2. Execute flutter pub get in the project directory to download the relevant plugins.

  3. Import the header file.

    import 'package:rongcloud_im_wrapper_plugin/rongcloud_im_wrapper_plugin.dart';

Disable Automatic Obfuscation on Android Platform

If you need to configure obfuscation, please refer to the Android documentation.

If you do not need to configure obfuscation, please disable automatic obfuscation. Otherwise, when executing flutter build apk, Flutter will automatically obfuscate the Android code, causing errors where the so library cannot be found.

android {
buildTypes {
release {
// Enables code shrinking, obfuscation, and optimization for only
// your project's release build type.
minifyEnabled false

// Enables resource shrinking, which is performed by the
// Android Gradle plugin.
shrinkResources false
}
}
...
}