From 6c67684fa60f80e22144cd3e5cb7aea57a5f0cc1 Mon Sep 17 00:00:00 2001 From: sospartan Date: Fri, 16 Jun 2017 06:33:32 -0700 Subject: [PATCH] Change android minimum SDK version to 14 Summary: The library(yoga) has no dependency on android framework. As a matter of fact this version can change to a lower number which will make yoga support more old systems. According to I/O 17, support library has change its minimum SDK version to 14, so I think 14 is a reasonable min support version for yoga as well. See https://developer.android.com/topic/libraries/support-library/revisions.html Closes https://github.com/facebook/yoga/pull/573 Differential Revision: D5264385 Pulled By: emilsjolander fbshipit-source-id: cb813a3b643a3f4e2034c6c0ab8b488f94d6a7d0 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index ad9e5872..22a32bf9 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ allprojects { } ext { - minSdkVersion = 15 + minSdkVersion = 14 targetSdkVersion = 25 compileSdkVersion = 25 buildToolsVersion = '25.0.2'