-
Notifications
You must be signed in to change notification settings - Fork 518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#1434: Add namespace to gradle; #1437: Remove deprecated code now causing build errors #1438
base: master
Are you sure you want to change the base?
Conversation
Hey @cohenadair, is there any chance this package will be maintained? It's been quite a while since there have been any updates for this package. |
@manukumarsb7, I've been using this package for years and it was maintained for a while, but since Mapbox released their official Flutter plugin, maintenance has fallen off (understandably). My long term plan is to move to the official plugin; I just haven't had the time yet. I would recommend moving to the official plugin if all you need is Android and iOS support. |
@cohenadair Thanks for your response. I have been using mapbox_gl for many years, particularly its features for adding and updating symbols on the map. However, after updating to the latest version of Flutter, I am encountering build errors on Android. I have now started working on migrating to the official mapbox_maps_flutter package. Could you please share any posts or documentation on migrating from mapbox_gl to mapbox_maps_flutter? Your guidance would be greatly appreciated. |
@manukumarsb7, there aren't any as far as I'm aware, but I haven't actually looked. My approach would be to just remove |
[like] Manukumar reacted to your message:
…________________________________
From: Cohen Adair ***@***.***>
Sent: Saturday, March 8, 2025 3:02:11 PM
To: flutter-mapbox-gl/maps ***@***.***>
Cc: Manukumar ***@***.***>; Mention ***@***.***>
Subject: Re: [flutter-mapbox-gl/maps] #1434: Add namespace to gradle; #1437: Remove deprecated code now causing build errors (PR #1438)
@manukumarsb7<https://github.com/manukumarsb7>, there aren't any as far as I'm aware, but I haven't actually looked. My approach would be to just remove mapbox_gl from my project and go through the build errors one-by-one, replacing each with the mapbox_maps_flutter equivalent as needed, while keeping track of everything that needs to be tested.
—
Reply to this email directly, view it on GitHub<#1438 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AWW7JISKX3K2GAU5O6JZDPL2TMA7HAVCNFSM6AAAAABXTMTO36VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDOMBYGM2DEMBXGE>.
You are receiving this because you were mentioned.Message ID: ***@***.***>
[cohenadair]cohenadair left a comment (flutter-mapbox-gl/maps#1438)<#1438 (comment)>
@manukumarsb7<https://github.com/manukumarsb7>, there aren't any as far as I'm aware, but I haven't actually looked. My approach would be to just remove mapbox_gl from my project and go through the build errors one-by-one, replacing each with the mapbox_maps_flutter equivalent as needed, while keeping track of everything that needs to be tested.
—
Reply to this email directly, view it on GitHub<#1438 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AWW7JISKX3K2GAU5O6JZDPL2TMA7HAVCNFSM6AAAAABXTMTO36VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDOMBYGM2DEMBXGE>.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
Flutter 3.29.0 requires an updated AGP, which required the following changes:
build.gradle
file (Building to android fails (flutter 3.27.0) #1434)location
anddevice_info_plus
dependencies (for "namespace" requirement changes)example
projectFlutter 3.29.0 also removed deprecated code that caused build errors for this plugin (#1437). The actual migration and use of new APIs was done long ago, but the deprecated code was kept, but unused, meaning it could be removed without actually affecting the functionality of the plugin.