Merge "Fix minimum supported API level in platforms.json." into ndk-release-r17
diff --git a/meta/platforms.json b/meta/platforms.json
index ac4b55f..5303903 100644
--- a/meta/platforms.json
+++ b/meta/platforms.json
@@ -1,5 +1,5 @@
 {
-  "min": 16,
+  "min": 14,
   "max": 28,
   "aliases": {
     "20": 19,
diff --git a/ndk/config.py b/ndk/config.py
index 97c66b3..6bda4b8 100644
--- a/ndk/config.py
+++ b/ndk/config.py
@@ -1,5 +1,5 @@
 major = 17
-hotfix = 1
+hotfix = 2
 hotfix_str = chr(ord('a') + hotfix) if hotfix else ''
 beta = 0
 beta_str = '-beta{}'.format(beta) if beta > 0 else ''