From fd7fa95c7d7a1957ca067e476e4e0493e25c5d54 Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Wed, 13 Sep 2017 13:54:38 -0400 Subject: [PATCH] Reduce min SDK to 16 It turns out that the min SDK the application will support is 16, as the NsdManager is available only at SDK 16 and above. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index e6439f5..6d87b00 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,7 +12,7 @@ android { defaultConfig { applicationId "protect.babymonitor" - minSdkVersion 17 + minSdkVersion 16 targetSdkVersion 17 }