Flutter pusher with Laravel echo

Nhan Cao
1 min readJan 7, 2021
  • Fine app_key from websocket url protocal of pusher on web:
wss://ws-mt1.pusher.com/app/xxxxxxxxxxxxxxxxxxxx?protocol=7&client=js&version=7.0.0&flash=false=> Pusher key = xxxxxxxxxxxxxxxxxxxx

Implement on Flutter

  • android/app/build.gradle
android {
buildTypes {
debug {
debuggable true
signingConfig signingConfigs.debug
}
release {
debuggable false
minifyEnabled true…

--

--