Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[android] #4362 - DATABASE_NAME needed to be replaced with mbgl-cache.db
Browse files Browse the repository at this point in the history
  • Loading branch information
zugaldia committed Mar 18, 2016
1 parent a39c775 commit 7fcfc2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private void deleteAmbientDatabase(final Context context) {
@Override
public void run() {
try {
String path = context.getCacheDir().getAbsolutePath() + File.separator + DATABASE_NAME;
String path = context.getCacheDir().getAbsolutePath() + File.separator + "mbgl-cache.db";
File file = new File(path);
if (file.exists()) {
file.delete();
Expand Down

0 comments on commit 7fcfc2c

Please sign in to comment.