From bf0aec07d44a06d682927d572629cc0bbf665bb5 Mon Sep 17 00:00:00 2001 From: Stefano Rodriguez Date: Fri, 20 Jul 2018 11:11:18 +0200 Subject: [PATCH] Add default minSdkVersion This avoids some not needed permissions to be automatically included by Gradle during the Manifest merge phase. It should be harmless otherwise, considering the Flutter's minSdkVersion is 16 anyways. --- android/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/android/build.gradle b/android/build.gradle index 741812a1..16f9b652 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -26,6 +26,7 @@ android { defaultConfig { testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + minSdkVersion 16 } lintOptions { disable 'InvalidPackage'