We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 343013d commit 9614074Copy full SHA for 9614074
build.gradle
@@ -24,7 +24,7 @@ allprojects {
24
}
25
26
project.ext {
27
- sdkVersion='0.6.4'
+ sdkVersion='0.6.5'
28
versionCode=1
29
30
compileSdkVersion=27
core/src/main/java/io/snabble/sdk/ProductDatabase.java
@@ -313,6 +313,8 @@ void applyDeltaUpdate(InputStream inputStream) throws IOException {
313
return;
314
315
316
+ tempDbFile.mkdirs();
317
+
318
FileUtils.copyFile(dbFile, tempDbFile);
319
320
SQLiteDatabase tempDb = SQLiteDatabase.openOrCreateDatabase(tempDbFile, null);
0 commit comments