Lyokone / flutterlocation

A Flutter plugin to easily handle realtime location in iOS and Android. Provides settings for optimizing performance or battery.
MIT License
1.11k stars 822 forks source link

Constant kotlin and gradle conflict #958

Open abdorll opened 4 months ago

abdorll commented 4 months ago

The class is loaded from C:/Users/user/.gradle/caches/transforms-3/c43036033b2a850b7b4fea83f4ff1678/transformed/jetified-kotlin-stdlib-1.9.0.jar!/kotlin/Unit.class e: C:\Users\user\AppData\Local\Pub\Cache\hosted\pub.dev\location-5.0.3\android\src\main\java\com\lyokone\location\FlutterLocationService.kt: (101, 9): Class 'kotlin.Unit' was c ompiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1.

mccabejj commented 4 months ago

Running into the same issue

kelemu777 commented 4 months ago

i have faced this issue too

5c0rp264 commented 4 months ago

SAME HERE, HELP PLEASE 💀

kelemu777 commented 4 months ago

i have solve it now, by downgrading packages i use, the causes for me is a geolocator package , by downgrading this package i solve it

5c0rp264 commented 4 months ago

Geolocator is a separated package not related to flutter location from my understanding...

kelemu777 commented 4 months ago

which package you use geolocator or location?

if you use location also u need to decrease it's version

5c0rp264 commented 4 months ago

I tried both, which version do you have exactly that is working ? Might be a needed answer anyway for everyone using either of those.

abdorll commented 4 months ago

I fixed mine by simply entirely removing the location package and using geolocator, since they both serve the same purpose fir my use case.

On Mon, 10 Jun 2024, 4:21 pm 5c0rp264, @.***> wrote:

I tried both, which version do you have exactly that is working ? Might be a needed answer anyway for everyone using either of those.

— Reply to this email directly, view it on GitHub https://github.com/Lyokone/flutterlocation/issues/958#issuecomment-2158646296, or unsubscribe https://github.com/notifications/unsubscribe-auth/ARVFOMO7UL742F2F7GMX3TTZGW77VAVCNFSM6AAAAABI5GH7CCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCNJYGY2DMMRZGY . You are receiving this because you authored the thread.Message ID: @.***>

5c0rp264 commented 4 months ago

Related to #948

rajeev1982 commented 4 months ago

I faced this too. Fixed it by upgrading the kotlin version in android/settings.gradle.

plugins { ... id "org.jetbrains.kotlin.android" version '2.0.0' apply false ... }

ahmedmt3 commented 3 months ago

Thank you @rajeev1982, this fixed it for me.