fix: remove Android self-install updater (#1125)

* fix: remove Android self-install updater

* fix: open Android updates in native browser
This commit is contained in:
Tommaso Casaburi
2026-05-06 17:56:00 +07:00
committed by GitHub
parent 7c028c1f36
commit aaa0d88d6a
14 changed files with 108 additions and 586 deletions
-14
View File
@@ -1,14 +0,0 @@
import { registerPlugin } from '@capacitor/core';
interface DownloadAndInstallUpdateOptions {
url: string;
fileName: string;
}
interface AppUpdaterPlugin {
downloadAndInstallUpdate(options: DownloadAndInstallUpdateOptions): Promise<void>;
}
const AppUpdater = registerPlugin<AppUpdaterPlugin>('AppUpdater');
export default AppUpdater;