AOSSIE-Org / Resonate

Clubhouse, but Open Source. A social voice platform.
GNU General Public License v3.0
171 stars 123 forks source link

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

Closed bhawesh2002 closed 1 month ago

bhawesh2002 commented 4 months ago

🐛 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 commented 4 months ago

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