Followed https://appwrite.io/docs/products/messaging/fcm
classpath 'com.google.gms:google-services:4.4.0'
gives the below error
TypeScript
* What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.application'.
> Could not create an instance of type com.android.build.gradle.internal.plugins.AppPlugin$ApplicationAndroidComponentsExtensionImplCompat.
> Could not generate a decorated class for type AppPlugin.ApplicationAndroidComponentsExtensionImplCompat.
> Cannot have abstract method AndroidComponentsExtension.registerSourceType().
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 819ms
Running Gradle task 'bundleRelease'... 1,320ms
Gradle task bundleRelease failed with exit code 1
TL;DR
Developers encountering plugin error when setting up Flutter Push Notification documentation. Possible solution: Check compatibility issues between 'com.google.gms:google-services:4.4.0' and Android plugins targeted.Recommended threads
- hi guys! my site is not accesible in my ...
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Delete on cascade from Cloud Function
I'm writing a Python function that deletes a user's main row from a table in my database. This row has relationships with other tables that use cascade deletion...