Flutter 实现 App 内更新安装包
在Flutter中实现应用内更新安装包,可以使用package_info
插件来获取当前应用的版本信息,然后通过http
或dart:io
发起网络请求来检查是否有新的版本,如果有,则可以引导用户下载更新。
以下是一个简单的示例代码:
import 'package:flutter/material.dart';
import 'package:package_info/package_info.dart';
import 'package:http/http.dart' as http;
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// 获取应用当前版本信息
Future<void> fetchCurrentVersion() async {
final packageInfo = await PackageInfo.fromPlatform();
final versionName = packageInfo.version;
print('当前版本: $versionName');
// 这里可以将versionName发送到服务器进行比对
}
// 检查并引导更新
Future<void> checkAndUpdateApp() async {
final response = await http.get('https://example.com/api/check-version');
final serverVersion = jsonDecode(response.body)['version'];
if (serverVersion != null) {
// 比较版本号,如果服务器版本更高,则提示用户更新
if (/* 当前版本小于服务器版本 */) {
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text('发现新版本'),
content: Text('是否更新应用?'),
actions: [
FlatButton(
child: Text('取消'),
onPressed: () => Navigator.pop(context),
),
FlatButton(
child: Text('更新'),
onPressed: () async {
// 引导用户到应用商店下载页面
await launch('https://example.com/download-url');
},
),
],
),
);
}
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('应用内更新示例'),
),
body: Center(
child: RaisedButton(
child: Text('检查更新'),
onPressed: checkAndUpdateApp,
),
),
),
);
}
}
在这个示例中,fetchCurrentVersion
函数获取当前应用的版本号,并将其与服务器端的版本进行比对。如果服务器上有新的版本,则提示用户进行更新。用户点击更新按钮后,将通过launch
函数(来自url_launcher
插件)打开应用商店的下载页面。
请注意,你需要在pubspec.yaml
中添加必要的依赖:
dependencies:
flutter:
sdk: flutter
package_info: ^0.4.3+11
http: ^0.12.2
url_launcher: ^5.5.0
并且确保你有权限请求网络和打开外部链接,在AndroidManifest.xml
和Info.plist
中配置相应权限。
评论已关闭