From 7fe3d6e9915143ddc3d83c091e749e8cd1fea44d Mon Sep 17 00:00:00 2001 From: Abner Oliveira Date: Tue, 17 Dec 2019 18:39:03 -0300 Subject: [PATCH] added README info about apk sizes --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 2232562..c293d6a 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,23 @@ Based on jerryscript which is slower than quickjs. The jsengine package does not +## Small Apk size + +A hello world flutter app, according flutter docs has 4.2 Mb or 4.6 Mb in size. + +https://flutter.dev/docs/perf/app-size#android + + +Bellow you can see the apk sizes of the `example app` generated with *flutter_js*: + +```bash + +|master ✓| → flutter build apk --split-per-abi + +✓ Built build/app/outputs/apk/release/app-armeabi-v7a-release.apk (5.4MB). +✓ Built build/app/outputs/apk/release/app-arm64-v8a-release.apk (5.9MB). +✓ Built build/app/outputs/apk/release/app-x86_64-release.apk (6.1MB). +```