Set min-api for iosched and tachiyomi apps

Change-Id: I63303b841c40f249c3a3286f05ff6750d9f117aa
diff --git a/tools/iosched_data.py b/tools/iosched_data.py
index 10edd2b..5aac7b0 100644
--- a/tools/iosched_data.py
+++ b/tools/iosched_data.py
@@ -5,6 +5,7 @@
 import os
 import utils
 
+ANDROID_L_API = '21'
 BASE = os.path.join(utils.THIRD_PARTY, 'iosched_2019')
 
 INPUT_JARS = [
@@ -168,9 +169,10 @@
 VERSIONS = {
   '2019': {
     'deploy' : {
-        'inputs': [os.path.join(BASE, path) for path in INPUT_JARS],
-        'pgconf': [os.path.join(BASE, 'proguard-rules.pro')],
-        'libraries': [utils.get_android_jar(28)],
+      'inputs': [os.path.join(BASE, path) for path in INPUT_JARS],
+      'pgconf': [os.path.join(BASE, 'proguard-rules.pro')],
+      'libraries': [utils.get_android_jar(28)],
+      'min-api' : ANDROID_L_API,
     },
   },
 }
diff --git a/tools/tachiyomi_data.py b/tools/tachiyomi_data.py
index 5518cea..10fafe2 100644
--- a/tools/tachiyomi_data.py
+++ b/tools/tachiyomi_data.py
@@ -5,14 +5,16 @@
 import os
 import utils
 
+ANDROID_J_API = '16'
 BASE = os.path.join(utils.THIRD_PARTY, 'tachiyomi')
 
 VERSIONS = {
   'b15d2fe16864645055af6a745a62cc5566629798': {
     'deploy' : {
-        'inputs': [os.path.join(BASE, 'program.jar')],
-        'pgconf': [os.path.join(BASE, 'proguard.config')],
-        'libraries': [os.path.join(BASE, 'library.jar')],
+      'inputs': [os.path.join(BASE, 'program.jar')],
+      'pgconf': [os.path.join(BASE, 'proguard.config')],
+      'libraries': [os.path.join(BASE, 'library.jar')],
+      'min-api' : ANDROID_J_API,
     },
   },
 }