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

Commit

Permalink
Fix method order
Browse files Browse the repository at this point in the history
  • Loading branch information
tuyen-vuduc committed Apr 10, 2017
1 parent a25f9c4 commit 49b4352
Show file tree
Hide file tree
Showing 2 changed files with 2,647 additions and 2,647 deletions.
4 changes: 2 additions & 2 deletions demo/Naxam.MapboxQs/MainActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ protected override void OnSaveInstanceState(Bundle outState)
protected override void OnDestroy()
{
mapView.OnDestroy();
base.OnStop();
base.OnDestroy();
}

public override void OnLowMemory()
{
base.OnLowMemory();
mapView.OnLowMemory();
}
}
}
}

Loading

0 comments on commit 49b4352

Please sign in to comment.