
Hi guys. I have very interesting problem. Right after adding AppWrite dependencies to pabspec.yaml in my Flutter project I get givven this error:

This is an error I came across as well. Here's how to fix it:
- In your Flutter project, navigate to
android/app
and open thebuild.gradle
file. - Scroll all the way down to where you see the
dependencies {}
code block. - Replace the full
dependencies
block with the following code:
dependencies {
constraints {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0") {
because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib")
}
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
}
}
}
- Save the file, and run
flutter clean
from your project root. Follow it up withdart pub get
andflutter pub get
to install all the dependencies that were cleaned. - Run your project 🤞🏻

@Chewbacca @Samuel Kings Let me know if this works!

I will try it, thanks

@safwan thank you very much, It works

Glad it does! Can you change the title of this post to [SOLVED] Error after adding Appwrite to Pubscpec.yaml FLUTTER

okay

[SOLVED] Error after adding Appwrite to Pubscpec.yaml FLUTTER

@safwan Thanks a lot. Works like magic

glad it helped!
Recommended threads
- Redirect URL sends HTTP instead of HTTPS...
I am not sure since when this issue is present, but my Google and Apple redirect URI are no longer pointing to the HTTPS redirect URI when I try to use OAuth. ...
- Failing to run document operations on sd...
Could someone point me in the right direction I'm going in cirlces. I have a problem with sdks and my self-hosted server in production (for ~3 years) I have bee...
- Functions fail to deploy after switching...
Hi <@1087889306208718959> , after switching my self-hosted Appwrite instance to use AWS S3 as the storage backend, my Cloud Functions stopped working. I’m runni...
