Resonate icon indicating copy to clipboard operation
Resonate copied to clipboard

BUG: You are applying Flutter's app_plugin_loader Gradle plugin imperatively using the apply script method

Open bhawesh2002 opened this issue 1 year ago • 1 comments

🐛 Describe the bug

The application is not getting built because gradle plugins were applied using the imperative method which is deprecated. The error:

You are applying Flutter's app_plugin_loader Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/go/flutter-gradle-plugin-apply
You are applying Flutter's main Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Mig rate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/go/flutter-gradle-plugin-apply
Warning: The plugin url_launcher_android requires Android SDK version 34 or higher.
For more information about build configuration, see https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. One or more plugins require a higher Android SDK version.
Fix this issue by adding the following to E:\FlutterProjects\Resonate\android\app\build.gradle: android {
compileSdkVersion 34

The Screenshot of the error: Screenshot (66)

bhawesh2002 avatar Mar 05 '24 15:03 bhawesh2002

I have fixed this issue : #290 But the Exception: _TypeError (Null check operator used on a null value) is yet to be fixed

bhawesh2002 avatar Mar 05 '24 16:03 bhawesh2002