summaryrefslogtreecommitdiff
path: root/android
Commit message (Collapse)AuthorAgeFilesLines
* Update to latest API 22 build toolsLeith Bade2015-03-174-16/+16
|
* Merge pull request #972 from mapbox/log_cleanupThiago Marcos P. Santos2015-03-121-3/+0
|\ | | | | Refactoring of the log system
| * Make the logging system staticThiago Marcos P. Santos2015-03-121-3/+0
| | | | | | | | | | | | | | No initialization is needed anymore and we can use the logging functions safely at any point of the code (threading is not handled though, so you might get multiplexed messages if you log from two threads simultaneously).
* | fixes black flicker on rotating the deviceKonstantin Käfer2015-03-123-52/+7
|/ | | | | | | | | | | | fixes #838 instead of rendering ad libitum on the map thread, we are now driving rendering from the UI thread on iOS via the map.renderSync() function. There are still white bars during the rotation, but the general content of the view is kept visible. - upgrades GLFW to 3.1 - removes swapped/needsSwap in favor of a more explicit scheme - View#invalidate() now replaces View#swap() and is called whenever the View needs to trigger a rerender. GLFW and Android to this right away, while iOS goes back to the main thread and does the Map redrawing as part of the GLKView update - sets all iOS deployment targets to 7.0 - disables SQLite3 version check, since the library version changed on iOS 8.2
* only upload the artifact we're buildingKonstantin Käfer2015-03-121-5/+26
| | | | fixes #982
* guard against concurrent OpenGL extension loadingKonstantin Käfer2015-03-061-9/+8
|
* make Map::resize() privateKonstantin Käfer2015-03-063-47/+7
| | | | they can only be called by View::resize
* #923 - Consolidating package namespacesBrad Leege2015-02-262-3/+3
|
* Fix all lint errorsLeith Bade2015-02-264-6/+7
|
* Replace setRotation with MatrixLeith Bade2015-02-262-5/+16
|
* Ignore lint error from OkHTTPLeith Bade2015-02-261-0/+4
| | | | Fixes #921
* Replace constantLeith Bade2015-02-251-1/+1
|
* Merge branch 'master' of github.com:mapbox/mapbox-gl-native into ↵Leith Bade2015-02-258-101/+164
|\ | | | | | | android-conversions
| * #823 - Adding JavaDoc for cancel()Brad Leege2015-02-251-0/+4
| |
| * #823 - Building cancel method. Refactoring request to not return OkHttp ↵Brad Leege2015-02-252-5/+16
| | | | | | | | Request object to help keep FileSource self contained.
| * #823 - Building request methodBrad Leege2015-02-251-0/+22
| |
| * #823 - Adding OkHttp dependency. Initial setup of JavaFileSource as a ↵Brad Leege2015-02-252-0/+25
| | | | | | | | singleton class.
| * Use Build constants instead of integersBrad Leege2015-02-251-1/+2
| |
| * #895 - Fixing missing JavaDoc warnings.Brad Leege2015-02-254-100/+100
| |
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into ↵Leith Bade2015-02-245-91/+41
|\ \ | |/ | | | | | | | | | | android-conversions Conflicts: android/java/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxgl/testapp/MainActivity.java
| * #911 - Persist GPS State in UI across device rotationBrad Leege2015-02-241-16/+44
| |
| * #913 - Updating to latest Android Gradle Build ToolsBrad Leege2015-02-242-2/+2
| |
* | Work on javadoc warningsLeith Bade2015-02-241-3/+2
| |
* | Save GPS on/off stateLeith Bade2015-02-231-10/+37
| |
* | Add compass supportLeith Bade2015-02-191-31/+98
| |
* | Fix GPS marker positioning. Disable map centre locking to GPSLeith Bade2015-02-192-23/+48
| |
* | Fix min SDK versionLeith Bade2015-02-191-1/+1
| |
* | Fix LOST loadingLeith Bade2015-02-191-4/+5
| |
* | Fixup LatLng class refLeith Bade2015-02-191-12/+12
| |
* | Add GPS marker on mapLeith Bade2015-02-194-43/+89
| |
* | Rename packages. Add GPS arrow.Leith Bade2015-02-1931-34/+34
| |
* | Add projection functions to JavaLeith Bade2015-02-1913-65/+442
| |
* | Tidy up JNI LatLng refsLeith Bade2015-02-195-130/+132
|/
* wrong parameter orderKonstantin Käfer2015-02-171-1/+1
|
* add ca bundle loading back to CURLKonstantin Käfer2015-02-171-6/+6
|
* fixes #476 & #853: pixel/meter/latlng conversion routines in core & iOSJustin R. Miller2015-02-161-8/+7
|
* Merge pull request #884 from mapbox/move-bucketsLeith Bade2015-02-142-5/+5
|\ | | | | Move to mapbox bucket
| * Move to mapbox bucketLeith Bade2015-02-132-5/+5
| |
* | Merge branch 'master' of github.com:mapbox/mapbox-gl-native into geoAPIBrad Leege2015-02-123-21/+31
|\ \ | |/
| * Archive libmbgl-gl.so with symbols intactLeith Bade2015-02-121-0/+1
| |
| * Merge pull request #861 from mapbox/android-2-3Leith Bade2015-02-112-21/+30
| |\ | | | | | | Add support for Android API level 8
| | * Add support for Android API level 8Leith Bade2015-02-112-21/+30
| | |
* | | #868 - Updating getLatLon() calls in MapView and NativeMapView. Updating ↵Brad Leege2015-02-123-21/+21
| | | | | | | | | | | | Java to C++ bindings to support refactored names.
* | | #868 - Updating LatLngZoom to match LatLngBrad Leege2015-02-121-6/+4
| | |
* | | #868 - Adding BoundingBox, CoordinateRegion, and CoordinateSpanBrad Leege2015-02-123-0/+352
| | |
* | | #868 - Bringing over ILatLng and refactoring LonLat to match LatLngBrad Leege2015-02-129-123/+216
|/ /
* | #826 - Commenting out cleanJNIBuilds() as it was being included as a dependencyBrad Leege2015-02-111-0/+2
|/
* #826 - Adding make command to build GL core, assemble .aar, and publish to ↵Brad Leege2015-02-111-0/+0
| | | | Maven Central
* Fix checkstyle errorsLeith Bade2015-02-102-10/+8
|
* Fix travis after android gradle refactorLeith Bade2015-02-103-18/+7
|