FLUTTER ECOSYSTEM

azhon/flutter_app_update

一个Flutter版本简单、轻量、可随意定制的Android版本更新库;A simple, lightweight, and customizable Android version update library for Flutter

flutter_app_update project cover
Stars
54
Forks
19
Last push (UTC)
Jul 14, 2026
Project status
Active
Code Porter GitHub avatar
GITHUB User

Code Porter ↗

JiangXi,ChinaOfficial website ↗
LanguagesDartKotlinObjective-CRubySwift

Packages published by this repository

Dependencies used

Dependency list 3 items
  • flutter{"sdk":"flutter"}
  • flutter_testDevelopment{"sdk":"flutter"}
  • flutter_lintsDevelopment^2.0.0

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README
Chinese Doc
一、Introduce
dependencies:
  flutter_app_update: ^latest_version
  • Create UpdateModel and set apk url
 UpdateModel model = UpdateModel(
   url,
   "flutterUpdate.apk",
   /// android res/mipmap icon name
   "ic_launcher",
   'https://itunes.apple.com/cn/app/xxxx',
 );
 AzhonAppUpdate.update(model).then((value) => debugPrint('$value'));
  • Add listener
@override
void initState() {
  super.initState();
  AzhonAppUpdate.listener((ResultModel model) {
    debugPrint('$model');
  });
}
三、Screenshot

https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img1.jpg https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img2.jpg https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img3.jpg https://raw.githubusercontent.com/azhon/FlutterAppUpdate/main/example/img/en/img4.jpg