Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
ContentProviderPluginBinding.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.contentprovider;
6
7import android.content.ContentProvider;
8import androidx.annotation.NonNull;
9
10/**
11 * Binding that gives {@link ContentProviderAware} plugins access to an associated {@link
12 * ContentProvider}.
13 */
15
16 /**
17 * Returns the {@link ContentProvider} that is currently attached to the {@link
18 * io.flutter.embedding.engine.FlutterEngine} that owns this {@code
19 * ContentProviderAwarePluginBinding}.
20 */
21 @NonNull
22 ContentProvider getContentProvider();
23}