in-app-updates-capacitor
Advanced tools
Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "in-app-updates-capacitor", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Enables In App Updates on Android using the official APIs.", | ||
@@ -5,0 +5,0 @@ "main": "dist/esm/index.js", |
@@ -1,3 +0,4 @@ | ||
# capacitor-in-app-updates | ||
# in-app-updates-capacitor | ||
Enables In App Updates on Android using the official Android APIs. | ||
@@ -88,3 +89,4 @@ | ||
() => { | ||
// Update downloaded complete and now you can start installing it. (completeFlexibleUpdate) | ||
// Update downloaded complete and now you can start installing it. | ||
// completeFlexibleUpdate() | ||
}, | ||
@@ -106,5 +108,5 @@ (error: any) => { | ||
if (info.status) { | ||
this.appendEcho("flexibleUpdateStatus: " + info.status); | ||
this.appendEcho("flexibleUpdateStatus bytesDownloaded: " + info.bytesDownloaded); | ||
this.appendEcho("flexibleUpdateStatus totalBytesToDownload: " + info.totalBytesToDownload); | ||
this.appendEcho("status: " + info.status); | ||
this.appendEcho("bytesDownloaded: " + info.bytesDownloaded); | ||
this.appendEcho("totalBytesToDownload: " + info.totalBytesToDownload); | ||
} | ||
@@ -111,0 +113,0 @@ }); |
146
118847