Skip to content

Instantly share code, notes, and snippets.

@vreamer
Created August 26, 2020 08:02
Show Gist options
  • Save vreamer/046d9512c550843931404f6486c0bd3f to your computer and use it in GitHub Desktop.
Save vreamer/046d9512c550843931404f6486c0bd3f to your computer and use it in GitHub Desktop.
Configure flutter engine
package com.example.direct_reply_notification
import android.os.Bundle
import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.engine.FlutterEngine
class MainActivity: FlutterActivity() {
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
super.configureFlutterEngine(flutterEngine)
NativeMethodChannel.configureChannel(flutterEngine)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment