You need to replace the scheme with a Callback URLs.
intent-filter>
<actionandroid:name="android.intent.action.VIEW" />
<categoryandroid:name="android.intent.category.DEFAULT" />
<categoryandroid:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "example://gizmos” --><!-- Registered Callback URLs in TwitterApp -->
<dataandroid:scheme="example"android:host="gizmos" /> <!-- host is option -->
</intent-filter>
Supporting the new Android plugins APIs
If you flutter created your project prior to version 1.12, you need to make sure to update your project in order to use the new Java Embedding API.
Make use you have flutter_embedding v2 enabled. Add the following code on the manifest file inside tag to enable embedding.
Flutter wiki: Upgrading pre 1.12 Android projects.