本文适用于Android开发人员php
Flutter Plugin是一种特殊的包,包含一个用Dart编写的API定义,结合Android和iOS的平台特定实现,从而达到两者兼容。java
相关代码见运行第一个Flutter Appandroid
右键工程->New->Module,以下图所示 git
在工程目录下找到pubspec.yaml
文件,在dev_dependencies
添加以下依赖,以下图所示 github
dev_dependencies:
flutter_test:
sdk: flutter
install_apk_plugin:
path: install_apk_plugin
复制代码
打开插件lib下的dart文件,会有平台自动生成的代码,具体是实现获取APP版本号,以下面代码所示编程
class InstallApkPlugin {
static const MethodChannel _channel =
const MethodChannel('install_apk_plugin');
static Future<String> get platformVersion async {
final String version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}
复制代码
java部分的代码以下面所示redux
public class InstallApkPlugin implements MethodCallHandler {
private static final String TAG = "InstallApkPlugin";
private final Registrar registrar;
/** * Plugin registration. */
public static void registerWith(Registrar registrar) {
final MethodChannel channel = new MethodChannel(registrar.messenger(), "install_apk_plugin");
channel.setMethodCallHandler(new InstallApkPlugin(registrar));
}
private InstallApkPlugin(Registrar registrar) {
this.registrar = registrar;
}
@Override
public void onMethodCall(MethodCall call, Result result) {
if (call.method.equals("getPlatformVersion")) {
result.success("Android " + android.os.Build.VERSION.RELEASE);
} else {
result.notImplemented();
}
}
}
复制代码
实现自动安装APK,须要从Flutter应用层传入一个APK安装包的地址到host层,dart代码以下所示:app
class InstallApkPlugin {
static const MethodChannel _channel =
const MethodChannel('install_apk_plugin');
static Future<String> get platformVersion async {
final String version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
static Future<bool> installApk(String path) async {
final bool isSuccess = await _channel.invokeMethod('installApk', path);
return isSuccess;
}
}
复制代码
java部分的代码以下所示async
public class InstallApkPlugin implements MethodCallHandler {
private static final String TAG = "InstallApkPlugin";
private final Registrar registrar;
/** * Plugin registration. */
public static void registerWith(Registrar registrar) {
final MethodChannel channel = new MethodChannel(registrar.messenger(), "install_apk_plugin");
channel.setMethodCallHandler(new InstallApkPlugin(registrar));
}
private InstallApkPlugin(Registrar registrar) {
this.registrar = registrar;
}
@Override
public void onMethodCall(MethodCall call, Result result) {
if (call.method.equals("getPlatformVersion")) {
result.success("Android " + android.os.Build.VERSION.RELEASE);
} else if (call.method.equals("installApk")) {
final String path = (String) call.arguments;
Log.d(TAG, "installApk path is " + path);
} else {
result.notImplemented();
}
}
}
复制代码
到此,host层就能获取到APK安装包的路径了,后面只需实现Android安装APK的代码逻辑便可,在日志下面添加以下代码编程语言
File file = new File(path);
installApk(file, registrar.context());
复制代码
installApk
代码实现以下所示
private void installApk(File apkFile, Context context) {
Intent installApkIntent = new Intent();
installApkIntent.setAction(Intent.ACTION_VIEW);
installApkIntent.addCategory(Intent.CATEGORY_DEFAULT);
installApkIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri apkUri = null;
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.M) {
apkUri = FileProvider.getUriForFile(context, context.getPackageName() + ".fileprovider", apkFile);
installApkIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
} else {
apkUri = Uri.fromFile(apkFile);
}
installApkIntent.setDataAndType(apkUri, "application/vnd.android.package-archive");
if (context.getPackageManager().queryIntentActivities(installApkIntent, 0).size() > 0) {
context.startActivity(installApkIntent);
}
}
复制代码
除此以外,还需修改AndroidManifest.xml
内的代码,以下面代码所示
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.yuzo.install_apk_plugin">
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<application>
<!--provider start-->
<provider android:name="androidx.core.content.FileProvider" tools:replace="android:authorities" android:authorities="com.yuzo.opengit.fileprovider" android:exported="false" android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" tools:replace="android:resource" android:resource="@xml/file_path" />
</provider>
<!--provider end-->
</application>
</manifest>
复制代码
file_path.xml
放在res->xml文件夹下面,以下面代码所示
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:tools="http://schemas.android.com/tools" tools:ignore="ResourceName">
<root-path name="root_path" path="." />
</paths>
复制代码
运行代码以下图所示