When you are opening messages for the first time, the keyboard has a slight delay in android.
I´m using intercom_flutter: ^9.4.1
I´m using this to open the agent.
onTap: () {
unawaited(Intercom.instance.displayMessenger());
},
flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.32.4, on macOS 15.5 24F74 darwin-arm64, locale es-419)
[✓] Android toolchain - develop for Android devices (Android SDK version 35.0.1)
[✓] Xcode - develop for iOS and macOS (Xcode 16.4)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2025.1)
[✓] VS Code (version 1.102.0)
[✓] Connected device (5 available)
[✓] Network resources
android {
namespace = ""
compileSdk = flutter.compileSdkVersion
ndkVersion "27.0.12077973"
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = 17
}
defaultConfig {
applicationId = ""
minSdk = 26
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
multiDexEnabled true
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
}
}
}
When you are opening messages for the first time, the keyboard has a slight delay in android.
I´m using intercom_flutter: ^9.4.1
I´m using this to open the agent.