All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mapbox.mapboxsdk.LibraryLoader Maven / Gradle / Ivy

There is a newer version: 9.2.1
Show newest version
package com.mapbox.mapboxsdk;

import timber.log.Timber;

/**
 * Centralises the knowledge about "mapbox-gl" library loading.
 */
public class LibraryLoader {

  /**
   * Loads "libmapbox-gl.so" native shared library.
   */
  public static void load() {
    try {
      System.loadLibrary("mapbox-gl");
    } catch (UnsatisfiedLinkError error) {
      Timber.e(error, "Failed to load native shared library.");
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy