flutter_android_package_installer 0.0.3+2 copy "flutter_android_package_installer: ^0.0.3+2" to clipboard
flutter_android_package_installer: ^0.0.3+2 copied to clipboard

PlatformAndroid

A Flutter plugin for installing Android package from apk file. Plugin uses Android Package Installer and requires minimum API Level version 21.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example')),
        body: HomeScreen(),
      ),
    );
  }
}
2
likes
160
points
28
downloads

Documentation

API reference

Publisher

verified publisherangcyo.com

Weekly Downloads

A Flutter plugin for installing Android package from apk file. Plugin uses Android Package Installer and requires minimum API Level version 21.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_android_package_installer

Packages that implement flutter_android_package_installer