summaryrefslogtreecommitdiff
path: root/platform/android/cache_database_data.cpp
blob: e1765efcdcab348d25ea5bfaf719cd95006b80e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <mbgl/platform/platform.hpp>

namespace mbgl {
namespace platform {

// Returns the path to the default cache database on this system.
std::string defaultCacheDatabase() {
// TODO need to use get cache dir from java
    return "/data/data/com.mapbox.mapboxgl.app/mbgl-cache.db";
}

}
}