summaryrefslogtreecommitdiff
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
...
* [ios] Non-embedded static frameworkMinh Nguyễn2016-03-089-26/+71
| | | | | | Added a new ifabric Make target for packaging up a static framework similar to the one released as 3.0.1. Place artwork and certificate assets inside Mapbox.bundle inside Mapbox.framework. Link SystemConfiguration in the umbrella header. Distinguish between the framework bundle and the resources bundle. For the dynamic frameworks and embedded static frameworks, the two are the same; for the non-embedded static framework, the latter resides inside the former.
* [core] Fix offline status reporting regressionsJohn Firebaugh2016-03-082-29/+38
| | | | | | The core of the change is ensuring that ensureResource doesn't release Zalgo: it should be consistently async, rather than async in the case that the resource doesn't exist in the database, but sync if it does. This ensures that status is reported in a more consistent sequence, regardless of the database state.
* [core] Fix RunLoop::run() behavior when called a second timeJohn Firebaugh2016-03-081-0/+1
|
* [core] Make OnlineFileSource respect the NetworkStatusThiago Marcos P. Santos2016-03-082-7/+13
| | | | | The user can now force the Offline mode and set it back to Online, triggering the requests waiting for network connection.
* [core] Remove goOffline() from DefaultFileSourceThiago Marcos P. Santos2016-03-081-10/+2
| | | | Use the newly added NetworkStatus::Set().
* [android] #4240 - add flag to resize only when needed.Tobrun2016-03-082-5/+7
|
* [core] Ensure OfflineRegionStatus::downloadState is accurately reportedJohn Firebaugh2016-03-071-0/+4
|
* Update TooManyIconsException.javaDan Swick2016-03-071-1/+1
|
* Update IconBitmapChangedException.javaDan Swick2016-03-071-2/+2
|
* [android] #4078 - improved instructions of exception messageTobrun2016-03-072-3/+9
|
* [android] #4078 Gave help directly in logcat instead of refering to install.mdCameron Mace2016-03-072-2/+2
|
* [android] #3631 - resize fix issueTobrun2016-03-071-1/+4
|
* [android] #2996 - test workaround for device not sharing contextTobrun2016-03-071-0/+5
|
* [android] #4220 - Removing WAKE_LOCK from TestApp. Lowering log level to ↵Brad Leege2016-03-073-6/+7
| | | | debug for Telemetry Location and Send to Server log lines.
* [android] Do not reach native if the HTTPContext was invalidatedThiago Marcos P. Santos2016-03-072-17/+29
| | | | | | | | | | | | | | | | Native will get destroyed before the Java HTTPRequest and asynchronous requests might still get answered. If the request gets canceled, we now clear the reference to the native code and it will never reach it. Lock is needed because OkHTTP replies on its own thread, so we need to guard the access to the variable we use for checking if the Request was canceled. In the future we could remove the lock and use Runnable when we move Android main loop to Looper instead of libuv. Like the other implementations of HTTPRequest on Mapbox GL Native, the request is destroyed synchronously on ::cancel().
* [android] #4217 - fix build warning casting a varargsTobrun2016-03-071-4/+1
|
* [android] Reporting is no longer an issueAntonio Zugaldia2016-03-071-1/+1
| | | | Part of #4200
* [android] Remove GSON From Offline Example TestAppAntonio Zugaldia2016-03-072-66/+18
| | | | Fixes #4172
* [android] Don't crash if someone tries to use OfflineRegion after deleteJohn Firebaugh2016-03-071-8/+13
|
* [android] Remove redundant arguments from offline native methodsJohn Firebaugh2016-03-072-21/+17
| | | | `this` is automatically provided as the first argument to a native method.
* [android] destroyOfflineRegion must not delete an already-deleted peerJohn Firebaugh2016-03-072-3/+8
|
* [android] Don't call util::toString() on a null exception_ptrJohn Firebaugh2016-03-071-1/+0
|
* [android] #4206 - property animation exampleTobrun2016-03-067-7/+193
|
* [android] #4211 - avoid crashes when NativeMapView is being destroyedTobrun2016-03-061-26/+161
|
* [ios] Cleaned up NSLocalizedString usageMinh Nguyễn2016-03-051-16/+16
| | | The format string would be localized, not the string resulting from expanding its placeholders. Also unindented a wildly indented block of code.
* [ios] Use MGLErrorDomain for errorsMinh Nguyễn2016-03-051-2/+1
|
* [android] Don't leak global references to OfflineRegionObserversJohn Firebaugh2016-03-041-13/+30
|
* Add package 'offline' to proguard keepsSascha Peilicke2016-03-041-1/+4
| | | | To avoid release build crashes at runtime due to missing classes.
* [android] Use jni.hpp low-level wrappersJohn Firebaugh2016-03-042-2050/+718
|
* [android] Remove JNI_OnUnload; it is in practice never calledJohn Firebaugh2016-03-041-147/+0
| | | | http://bleaklow.com/2006/02/18/jni_onunload_mostly_useless.html
* [android] Remove JNICALL; it's a no-op macroJohn Firebaugh2016-03-041-98/+100
|
* [android] Remove unnecessary declarations from jni.hppJohn Firebaugh2016-03-041-138/+2
|
* [android] Use jni.hpp in http_request_android.cppJohn Firebaugh2016-03-048-398/+220
|
* [android] Add jni.hpp headers to buildJohn Firebaugh2016-03-042-0/+2
|
* [core] Fix offline status reporting with pre-existing tiles (#4147)John Firebaugh2016-03-043-18/+28
|
* [ios] Update telemetry opt-out docs linkJason Wray2016-03-041-1/+1
|
* [iOS] #4148 Update event serialization to the V2 specification.boundsj2016-03-034-155/+228
| | | | | | This updates the endpoint for events to "v2" and updates appUserTurnstile, map.load, map.click, map.dragend, and location to the V2 spec.
* Merge branch 'release-ios-v3.2.0'Jesse Bounds2016-03-032-6/+6
|\
| * Update package script to reflect file path changeios-v3.2.0-pre.1Jesse Bounds2016-02-271-5/+5
| |
| * Update podspec, changelog for 3.2.0-pre.1-symbolsJesse Bounds2016-02-271-1/+1
| |
* | [android] Make listOfflineRegions include definitionsAntonio Zugaldia2016-03-031-0/+22
| | | | | | | | Fixes #4165
* | [android] #3867 - performance improvement for invalidating the cameraTobrun2016-03-037-57/+85
| |
* | [android] #4149 - added a drop pin example to the GeocoderActivityTobrun2016-03-032-26/+60
| |
* | [android] #4166 - move style url to map view for improved async loadingTobrun2016-03-0322-88/+130
| |
* | [android] #4157 - handle null icon when using parceable on MarkerOptionsTobrun2016-03-021-7/+15
| |
* | [android|ios|osx] Fix return type for pixelForLatLngBruno de Oliveira Abinader2016-03-013-3/+3
| |
* | [core] PrecisionPoint is now ScreenCoordinateBruno de Oliveira Abinader2016-03-014-16/+16
| |
* | [android] #4145 - Updating to OkHttp 3.2.0 and switching Telemetry ↵Brad Leege2016-02-292-25/+13
| | | | | | | | Certificate Pins to SHA256
* | [android] #4142 - Removing Partial Wake LockBrad Leege2016-02-291-8/+0
| |
* | [android] Simplify offline metadata API on AndroidAntonio Zugaldia2016-02-297-122/+41
| | | | | | | | Fixes #4139