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