From 85d21ef977d3aadee782c846c8697f9a467382f8 Mon Sep 17 00:00:00 2001 From: rhyme Date: Thu, 7 Apr 2022 17:17:13 +0800 Subject: [PATCH] finish v0.3.8 ,fix #56 #57 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 046d88d..0b5dfd2 100644 --- a/README.md +++ b/README.md @@ -169,11 +169,19 @@ enum RUpgradeFlavor { ``` #### 4. Install Apk + +- use download id install ```dart void install() async { bool isSuccess=await RUpgrade.install(id); } ``` +- use file path install +```dart + void installByPath(String path) async { + bool isSuccess=await RUpgrade.installByPath(path); +} +``` #### 5. Pause Download ```dart