The plugin admob_flutter uses a deprecated version of the Android embedding - flutter

when i put admob_flutter: ^2.0.0-nullsafety.1 in pubspec, and type on cmd flutter pub get this error occurs!
The plugin admob_flutter uses a deprecated version of the Android embedding.
To avoid unexpected runtime failures, or future build failures, try to see if this plugin supports the Android V2 embedding. Otherwise, consider removing it since a future release of
Flutter will remove these deprecated APIs.

It's for latest flutter updates. so you can't do anything. Please use other package or wait till fix the problem by package developer because this error is produced after flutter version 2.5.

I have downgraded my flutter version by command flutter downgrade and it shows an option of a downgraded flutter version and it resolves my error.

Downgrading flutter worked for me.

Related

Deprecation error in audio_service plugin flutter

I tried to run an application but it is giving the following deprecation error. I have upgraded to flutter 3 since then I am getting this error. I have tried flutter clean, pub get, pub repair.
Still, the error is constant.
I am using audio_service: ^0.18.2 and just_audio: ^0.9.24 versions.
That error means you are compiling against the next beta release of Android which deprecates some methods that were being used by audio_service. Someone has already submitted an issue on the project's GitHub page to support this beta version of Android, and the latest audio_service release should now support it.

Facing this issue with flutter_webview_plugin while running on latest version of Flutter 2.10.3

The plugin flutter_webview_plugin uses a deprecated version of the Android embedding.
To avoid unexpected runtime failures or future build failures, try to see if this plugin supports the Android V2 embedding. Otherwise, consider removing it since a future release of Flutter will remove these deprecated APIs.
If you are a plugin author, take a look at the docs for migrating the plugin to the V2 embedding: https://flutter.dev/go/android-plugin-migration.
This issue has already been raised on Github https://github.com/fluttercommunity/flutter_webview_plugin/issues/921
but as of now, I am unable to change this library to any other because my project is already in the deployment phase.

The plugins `advance_pdf_viewer, flutter_webview_plugin` use a deprecated version of the Android embedding

The plugins advance_pdf_viewer, flutter_webview_plugin use a deprecated version of the Android embedding.
To avoid unexpected runtime failures or future build failures, try to see if these plugins support the Android V2 embedding. Otherwise, consider removing them since a future release of
Flutter will remove these deprecated APIs."
I follow some documentation but is still not working.
i upgrade and downgrade my version but still not working.
should I share my mainActivity.kt and manifest file?
if there is no newer version of advance_pdf_viewer, flutter_webview_plugin available with the new android V2 embedding, your can't do anything inside of your app. Keep watching for plugin updates of these 2 plugins... or go to it's github project and open an issue to fix it. Sometime the master branch has already fix it. In this case you could try to link direct to the master branch and not to a version in pub.dev
for advance_pdf_viewer i use $flutter pub add advance_pdf_viewer
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
advance_pdf_viewer: ^2.0.1
Alternatively, your editor might support or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:advance_pdf_viewer/advance_pdf_viewer.dart';
and for webview I try dependencies:
flutter_webview_plugin:
git: https://github.com/nuc134r/flutter_webview_plugin.git
and it all works for me than you.

flutter:: `flutter_audio_recorder, storage_path` use a deprecated version of the Android embedding

When I ran flutter run, I got the following error:
flutter_audio_recorder, storage_path use a deprecated
version of the Android embedding.
To avoid unexpected runtime
failures, or future build
failures, try to see if these
plugins support the Android V2
embedding. Otherwise, consider
removing them since a future
release of Flutter will remove
these deprecated APIs.
If you are plugin author, take a
look at the docs for migrating the
plugin to the V2 embedding:
https://flutter.dev/go/android-plugin-migration.
How can I solve this?
flutter_audio_recorder' and 'storage_path are the package names I use.

Error in Flutter while using Provider tool

I am building a basic app using flutter, in which I had to use provider, I added Provider dependencies in pubspec.yaml file but getting this error please help, I added the error below not able to fix this problem I have the latest flutter SDK
To solve this use lower version of Provider dependency as newer version of provider depends on newer version of Flutter SDK and your application's Flutter SDK is old one so it will have compatibility issues, So just degrade the version of dependency or you can also run pub outdated command and it will suggest you compatible version as per your SDK.