A Capacitor plugin allows to install APK files
npm install capacitor-apkinstaller
npx cap syncimport { ApkInstaller } from 'capacitor-apkinstaller';
(async () => {
await ApkInstaller.open({ filePath: "path/to/your/app.apk" });
})();open(options: OpenOptions) => Promise<void>| Param | Type |
|---|---|
options |
OpenOptions |
| Prop | Type | Description | Since |
|---|---|---|---|
filePath |
string |
Path to the APK file to install | 1.0.0 |