apk_installer 0.0.4 apk_installer: ^0.0.4 copied to clipboard
A Flutter plugin for easy Android APK installation, compatible with Android API 19 and higher.
apk_installer #
A Flutter plugin for easy Android APK installation, compatible with Android API 19 and higher.
Usage #
To use this plugin, add apk_installer
as a dependency in your pubspec.yaml file.
Example #
import 'package:flutter/material.dart';
import 'package:apk_installer/apk_installer.dart';
Future<void> _installApk() async {
await ApkInstaller.installApk(filePath: 'path/to/your/package.apk');
}
void main() {
runApp(
const MaterialApp(
home: Material(
child: Center(
child: ElevatedButton(
onPressed: _installApk,
child: Text('Install APK'),
),
),
),
),
);
}
License #
This project is licensed under the MIT License - see the LICENSE file for details.