summaryrefslogtreecommitdiff
path: root/platform/android/cache_database_data.cpp
blob: 5f13a44f681f979062bcf999be359d97f5ceac3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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() {
// TODO need to use get cache dir from java
    return mbgl::android::cache_path + "/mbgl-cache.db";
}

}
}