From 9b33b3b2291c0331b331c1588f180e97f1576bac Mon Sep 17 00:00:00 2001 From: Aryan Sethi <46836282+AryanSethi@users.noreply.github.com> Date: Sun, 13 Dec 2020 17:54:35 +0530 Subject: [PATCH] README updated minSdkVersion is required to be atleast 19, or the tflite plugin fails to work --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 216b457..7a14080 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,10 @@ In `android/app/build.gradle`, add the following setting in `android` block. noCompress 'tflite' noCompress 'lite' } -``` +``` + +and in the same file, change the `minSdkVersion` to 19 or above. + ### iOS @@ -510,4 +513,4 @@ var result = await runPoseNetOnFrame( ## Run test cases -`flutter test test/tflite_test.dart` \ No newline at end of file +`flutter test test/tflite_test.dart`