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

namespace mbgl {
namespace platform {

// Returns the path to the default cache database on this system.
std::string defaultCacheDatabase() {
    return mbgl::android::cachePath + "/mbgl-cache.db";
}

}
}