Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
BroadcastReceiverPluginBinding.java
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package io.flutter.embedding.engine.plugins.broadcastreceiver;
6
7import android.content.BroadcastReceiver;
8import androidx.annotation.NonNull;
9
10/**
11 * Binding that gives {@link BroadcastReceiverAware} plugins access to an associated {@link
12 * BroadcastReceiver}.
13 */
15
16 /**
17 * Returns the {@link BroadcastReceiver} that is currently attached to the {@link
18 * io.flutter.embedding.engine.FlutterEngine} that owns this {@code
19 * BroadcastReceiverAwarePluginBinding}.
20 */
21 @NonNull
22 BroadcastReceiver getBroadcastReceiver();
23}