ota_update
A Flutter plugin providing ota updates for Android and iOS, with download progress (Android only)
Flutter plugin implementing OTA update for both iOS and Android
{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
Flutter plugin implementing OTA update.
On Android it downloads the file (with progress reporting) and triggers app installation intent.
On iOS it opens safari with specified ipa url. (not yet functioning)
English | 简体中文
As we plan to use more modern java features across all our plugins, we opted for desugaring of java features. As a result, you need to enable desugaring. More and more packages is already requiring this, so there is a good chance you have it enabled already.
If not, it is fairly simple to do so. In you android/app/build.gradle
android {
defaultConfig {
// Required when setting minSdkVersion to 20 or lower
multiDexEnabled true
}
compileOptions {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
// Sets Java compatibility to Java 8
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
// For AGP 7.4+
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
// For AGP 7.3
// coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.3'
// For AGP 4.0 to 7.2
// coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.9'
}
This update removes legacy support for flutter android embedding v1. No one should be affected now. In a rare event you are still using old ombedding, please consider upgrading to v2.
This update solves many problems arising from using android download manager and saving to external downloads folder.
Important changes:
After upgrading version number, you need to replace contents of the file android/src/main/res/xml/filepaths.xml with following contents.
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="internal_apk_storage" path="ota_update/"/>
</paths>
To use this plugin, add ota_update as a dependency in your pubspec.yaml file.
// IMPORT PACKAGE
import 'package:ota_update/ota_update.dart';
// RUN OTA UPDATE
// START LISTENING FOR DOWNLOAD PROGRESS REPORTING EVENTS
try {
//LINK CONTAINS APK OF FLUTTER HELLO WORLD FROM FLUTTER SDK EXAMPLES
OtaUpdate()
.execute(
'https://internal1.4q.sk/flutter_hello_world.apk',
// OPTIONAL
destinationFilename: 'flutter_hello_world.apk',
//OPTIONAL, ANDROID ONLY - ABILITY TO VALIDATE CHECKSUM OF FILE:
sha256checksum: "d6da28451a1e15cf7a75f2c3f151befad3b80ad0bb232ab15c20897e54f21478",
).listen(
(OtaEvent event) {
setState(() => currentEvent = event);
},
);
} catch (e) {
print('Failed to make OTA update. Details: $e');
}
Add permissions to AndroidManifest.xml.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
Since version 7.1.0 the plugin supports PackageInstaller method for installing APKs. This method is default for system apps as it allows silent installation (more in next section).
For regular apps this includes reporting of installation progress via plugin and notification after installation result (howevwer upon successful installation, the OS may restart app). One caveat when using this method is that OS no longer provides nice UI with installation progress, so it is more suited for apps that want to handle progress notifications themselves.
Because of this, the PackageInstaller method is not enabled by default but you need to opt in by passing usePackageInstaller: true to execute method.
Please note, that when you want to ensure progress reporting works as intended you need to add following receiver reference to AndroidManifest.xml inside <application> node.
<receiver android:name="sk.fourq.otaupdate.InstallResultReceiver" android:exported="false">
<intent-filter>
<action android:name="${applicationId}.ACTION_INSTALL_COMPLETE"/>
</intent-filter>
</receiver>
This plugin automatically supports silent installation for system apps without user interaction. The plugin includes the INSTALL_PACKAGES permission which enables this feature.
How it works:
/system/ or signed with platform certificate): Installs silently without user interaction ✓No extra configuration needed! The plugin automatically detects if your app is a system app and uses the appropriate installation method. For regular apps, the INSTALL_PACKAGES permission is harmlessly ignored by Android and the normal installation flow is used.
This is particularly useful for:
Add following provider reference to AndroidManifest.xml inside <application> node.
<provider
android:name="sk.fourq.otaupdate.OtaUpdateFileProvider"
android:authorities="${applicationId}.ota_update_provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
Add following receiver reference to AndroidManifest.xml inside <application> node.
<receiver android:name="sk.fourq.otaupdate.InstallResultReceiver" android:exported="false">
<intent-filter>
<action android:name="${applicationId}.ACTION_INSTALL_COMPLETE"/>
</intent-filter>
</receiver>
When using silent installation, or PackageInstaller method, this allows plugin to get result of installation.
See AndroidManifest.xml in example
Also, create the file android/src/main/res/xml/filepaths.xml with following contents.
This will allow plugin to access the downloads folder to start the update.
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="internal_apk_storage" path="ota_update/"/>
</paths>
See filepaths.xml in example
Cleartext traffic is disabled by Android download manager by default for security reasons. To allow it you need to create file res/xml/network_security_config.xml
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
and reference it in AndroidManifest.xml in application tag
android:networkSecurityConfig="@xml/network_security_config"
Since this plugin only handles download and installation, there are still a few steps out of our scope that needs to be done. This is mainly to allow different implementation scenarios.
This package supports sha256 checksum verification of the file integrity. This allows as to detect if file has been corrupted during transfer.
To use this feature, your update server should provide you with sha256 checksum of APK and you need to obtain this value while you are checking for update. When you run execute method with this parameter, plugin will compute sha256 value from downloaded file and compare with provided value. The update will continiue only if the two values match, otherwise it throws error.
Plugin now allows you to get android ABI platform. If your are building multiple apks per abi (using flutter param --split-per-abi), you can now utilize smaller APKs. You can get system architecture and choose to download smaller APK
PackageInstaller method.PackageInstaller methodPackageInstaller method