Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Do not work on Genymotion #12629

Closed
dsilvera opened this issue Aug 14, 2018 · 4 comments
Closed

Do not work on Genymotion #12629

dsilvera opened this issue Aug 14, 2018 · 4 comments
Labels
Android Mapbox Maps SDK for Android archived Archived because of inactivity

Comments

@dsilvera
Copy link

Steps to reproduce

  1. Clone the last stable version 6.3.0 (https://github.com/mapbox/mapbox-gl-native/tree/android-v6.3.0)

  2. Change access token with yours

  3. Launch test app on Genymotion (any version)

Expected behavior

The card manipulation is fluid.

Actual behavior

The map is difficult to manipulate. It is not fluid.

Configuration

Android versions: Any version
Device models: Genymotion
Mapbox SDK versions: 6.3.0

On version 5.4, we do not have this problem. It is a blocking problem to migrate to this new version

@tobrun tobrun added the Android Mapbox Maps SDK for Android label Aug 15, 2018
@mayardb
Copy link
Contributor

mayardb commented Aug 16, 2018

By the way, the problem exists on avd too. Loading tiles makes the application lags.

avd mapbox lags

But it's worse on genymotion.

genymotion mapbox lags

To reproduce this animation, add in SimpleMapActivity:

    @Override
    protected void onResume() {
        super.onResume();
        mapView.onResume();

        mapView.addOnMapChangedListener(new MapView.OnMapChangedListener() {
            @Override
            public void onMapChanged(int change) {
                if (change == MapView.DID_FINISH_RENDERING_FRAME_FULLY_RENDERED) {
                    mapView.getMapAsync(mapboxMap -> {
                        mapView.removeOnMapChangedListener(this);
                        mapboxMap.animateCamera(CameraUpdateFactory.newCameraPosition(
                                new CameraPosition.Builder()
                                        .target(new LatLng(48.85, 2.35))
                                        .zoom(9)
                                        .build()
                                ), 3000
                        );
                    });
                }
            }
        });
    }

@philemonmerlet
Copy link
Contributor

Is there any update for this issue ? This is blocking for us, because we heavily rely on genymotion for our development process, including automated tests.

@lilykaiser
Copy link

@philemonmerlet , we expect #12832 to improve this issue. It should be released in the middle of next week for you to try out!

@stale stale bot added the archived Archived because of inactivity label Mar 6, 2019
@stale
Copy link

stale bot commented Mar 6, 2019

This issue has been automatically detected as stale because it has not had recent activity and will be archived. Thank you for your contributions.

@stale stale bot closed this as completed Mar 6, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Android Mapbox Maps SDK for Android archived Archived because of inactivity
Projects
None yet
Development

No branches or pull requests

5 participants