Supporting the new Android plugins APIs
If you don't write or maintain an Android Flutter plugin, you can skip this page.
As of the 1.12 release, new plugin APIs are available for the Android platform. The old APIs based on PluginRegistry.Registrar
won't be immediately deprecated, but we encourage you to migrate to the new APIs based on FlutterPlugin
.
The new API has the advantage of providing a cleaner set of accessors for lifecycle dependent components compared to the old APIs. For instance PluginRegistry.Registrar.activity()
could return null if Flutter isn't attached to any activities.
In other words, plugins using the old API might produce undefined behaviors when embedding Flutter into an Android app. Most of the Flutter plugins provided by the flutter.dev team have been migrated already. (Learn how to become a verified publisher on pub.dev!) For an example of a plugin that uses the new APIs, see the battery plus package.
Upgrade steps
#The following instructions outline the steps for supporting the new API:
Update the main plugin class (
*Plugin.java
) to implement theFlutterPlugin
interface. For more complex plugins, you can separate theFlutterPlugin
andMethodCallHandler
into two classes. See the next section, Basic plugin, for more details on accessing app resources with the latest version (v2) of embedding.
Also, note that the plugin should still contain the staticregisterWith()
method to remain compatible with apps that don't use the v2 Android embedding. (See Upgrading pre 1.12 Android projects for details.) The easiest thing to do (if possible) is move the logic fromregisterWith()
into a private method that bothregisterWith()
andonAttachedToEngine()
can call. EitherregisterWith()
oronAttachedToEngine()
will be called, not both.
In addition, you should document all non-overridden public members within the plugin. In an add-to-app scenario, these classes are accessible to a developer and require documentation.(Optional) If your plugin needs an
Activity
reference, also implement theActivityAware
interface.(Optional) If your plugin is expected to be held in a background Service at any point in time, implement the
ServiceAware
interface.Update the example app's
MainActivity.java
to use the v2 embeddingFlutterActivity
. For details, see Upgrading pre 1.12 Android projects. You might have to make a public constructor for your plugin class if one didn't exist already. For example:MainActivity.javajavapackage io.flutter.plugins.firebasecoreexample; import io.flutter.embedding.android.FlutterActivity; import io.flutter.embedding.engine.FlutterEngine; import io.flutter.plugins.firebase.core.FirebaseCorePlugin; public class MainActivity extends FlutterActivity { // You can keep this empty class or remove it. Plugins on the new embedding // now automatically registers plugins. }
(Optional) If you removed
MainActivity.java
, update the<plugin_name>/example/android/app/src/main/AndroidManifest.xml
to useio.flutter.embedding.android.FlutterActivity
. For example:AndroidManifest.xmlxml<activity android:name="io.flutter.embedding.android.FlutterActivity" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale" android:hardwareAccelerated="true" android:exported="true" android:windowSoftInputMode="adjustResize"> <meta-data android:name="io.flutter.app.android.SplashScreenUntilFirstFrame" android:value="true" /> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity>
(Optional) Create an
EmbeddingV1Activity.java
file that uses the v1 embedding for the example project in the same folder asMainActivity
to keep testing the v1 embedding's compatibility with your plugin. Note that you have to manually register all the plugins instead of usingGeneratedPluginRegistrant
. For example:EmbeddingV1Activity.javajavapackage io.flutter.plugins.batteryexample; import android.os.Bundle; import io.flutter.app.FlutterActivity; import io.flutter.plugins.battery.BatteryPlugin; public class EmbeddingV1Activity extends FlutterActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); BatteryPlugin.registerWith(registrarFor("io.flutter.plugins.battery.BatteryPlugin")); } }
Add
<meta-data android:name="flutterEmbedding" android:value="2"/>
to the<plugin_name>/example/android/app/src/main/AndroidManifest.xml
. This sets the example app to use the v2 embedding.(Optional) If you created an
EmbeddingV1Activity
in the previous step, add theEmbeddingV1Activity
to the<plugin_name>/example/android/app/src/main/AndroidManifest.xml
file. For example:AndroidManifest.xmlxml<activity android:name=".EmbeddingV1Activity" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale" android:hardwareAccelerated="true" android:exported="true" android:windowSoftInputMode="adjustResize"> </activity>
Testing your plugin
#The remaining steps address testing your plugin, which we encourage, but aren't required.
Update
<plugin_name>/example/android/app/build.gradle
to replace references toandroid.support.test
withandroidx.test
:build.gradlegroovydefaultConfig { ... testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" ... }
build.gradlegroovydependencies { ... androidTestImplementation 'androidx.test:runner:1.2.0' androidTestImplementation 'androidx.test:rules:1.2.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' ... }
Add tests files for
MainActivity
andEmbeddingV1Activity
in<plugin_name>/example/android/app/src/androidTest/java/<plugin_path>/
. You will need to create these directories. For example:MainActivityTest.javajavapackage io.flutter.plugins.firebase.core; import androidx.test.rule.ActivityTestRule; import io.flutter.plugins.firebasecoreexample.MainActivity; import org.junit.Rule; import org.junit.runner.RunWith; @RunWith(FlutterRunner.class) public class MainActivityTest { // Replace `MainActivity` with `io.flutter.embedding.android.FlutterActivity` if you removed `MainActivity`. @Rule public ActivityTestRule<MainActivity> rule = new ActivityTestRule<>(MainActivity.class); }
EmbeddingV1ActivityTest.javajavapackage io.flutter.plugins.firebase.core; import androidx.test.rule.ActivityTestRule; import io.flutter.plugins.firebasecoreexample.EmbeddingV1Activity; import org.junit.Rule; import org.junit.runner.RunWith; @RunWith(FlutterRunner.class) public class EmbeddingV1ActivityTest { @Rule public ActivityTestRule<EmbeddingV1Activity> rule = new ActivityTestRule<>(EmbeddingV1Activity.class); }
Add
integration_test
andflutter_driver
dev_dependencies to<plugin_name>/pubspec.yaml
and<plugin_name>/example/pubspec.yaml
.pubspec.yamlyamlintegration_test: sdk: flutter flutter_driver: sdk: flutter
Update minimum Flutter version of environment in
<plugin_name>/pubspec.yaml
. All plugins moving forward will set the minimum version to 1.12.13+hotfix.6 which is the minimum version for which we can guarantee support. For example:pubspec.yamlyamlenvironment: sdk: ">=2.16.1 <3.0.0" flutter: ">=1.17.0"
Create a simple test in
<plugin_name>/test/<plugin_name>_test.dart
. For the purpose of testing the PR that adds the v2 embedding support, we're trying to test some very basic functionality of the plugin. This is a smoke test to ensure that the plugin properly registers with the new embedder. For example:dartimport 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; void main() { IntegrationTestWidgetsFlutterBinding.ensureInitialized(); testWidgets('Can get battery level', (tester) async { final Battery battery = Battery(); final int batteryLevel = await battery.batteryLevel; expect(batteryLevel, isNotNull); }); }
Test run the
integration_test
tests locally. In a terminal, do the following:flutter test integration_test/app_test.dart
Basic plugin
#To get started with a Flutter Android plugin in code, start by implementing FlutterPlugin
.
public class MyPlugin implements FlutterPlugin {
@Override
public void onAttachedToEngine(@NonNull FlutterPluginBinding binding) {
// TODO: your plugin is now attached to a Flutter experience.
}
@Override
public void onDetachedFromEngine(@NonNull FlutterPluginBinding binding) {
// TODO: your plugin is no longer attached to a Flutter experience.
}
}
As shown above, your plugin might (or might not) be associated with a given Flutter experience at any given moment in time. You should take care to initialize your plugin's behavior in onAttachedToEngine()
, and then cleanup your plugin's references in onDetachedFromEngine()
.
The FlutterPluginBinding provides your plugin with a few important references:
- binding.getFlutterEngine()
- Returns the
FlutterEngine
that your plugin is attached to, providing access to components like theDartExecutor
,FlutterRenderer
, and more. - binding.getApplicationContext()
- Returns the Android application's
Context
for the running app.
UI/Activity plugin
#If your plugin needs to interact with the UI, such as requesting permissions, or altering Android UI chrome, then you need to take additional steps to define your plugin. You must implement the ActivityAware
interface.
public class MyPlugin implements FlutterPlugin, ActivityAware {
//...normal plugin behavior is hidden...
@Override
public void onAttachedToActivity(ActivityPluginBinding activityPluginBinding) {
// TODO: your plugin is now attached to an Activity
}
@Override
public void onDetachedFromActivityForConfigChanges() {
// TODO: the Activity your plugin was attached to was
// destroyed to change configuration.
// This call will be followed by onReattachedToActivityForConfigChanges().
}
@Override
public void onReattachedToActivityForConfigChanges(ActivityPluginBinding activityPluginBinding) {
// TODO: your plugin is now attached to a new Activity
// after a configuration change.
}
@Override
public void onDetachedFromActivity() {
// TODO: your plugin is no longer associated with an Activity.
// Clean up references.
}
}
To interact with an Activity
, your ActivityAware
plugin must implement appropriate behavior at 4 stages. First, your plugin is attached to an Activity
. You can access that Activity
and a number of its callbacks through the provided ActivityPluginBinding
.
Since Activity
s can be destroyed during configuration changes, you must clean up any references to the given Activity
in onDetachedFromActivityForConfigChanges()
, and then re-establish those references in onReattachedToActivityForConfigChanges()
.
Finally, in onDetachedFromActivity()
your plugin should clean up all references related to Activity
behavior and return to a non-UI configuration.
Unless stated otherwise, the documentation on this site reflects the latest stable version of Flutter. Page last updated on 2024-06-24. View source or report an issue.