We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
android api
1 parent 57be583 commit 703dcc0Copy full SHA for 703dcc0
pythonforandroid/distribution.py
@@ -22,6 +22,7 @@ class Distribution(object):
22
url = None
23
dist_dir = None # Where the dist dir ultimately is. Should not be None.
24
ndk_api = None
25
+ android_api = None
26
27
archs = []
28
'''The arch targets that the dist is built for.'''
@@ -214,6 +215,7 @@ def save_info(self, dirn):
214
215
'bootstrap': self.ctx.bootstrap.name,
216
'archs': [arch.arch for arch in self.ctx.archs],
217
'ndk_api': self.ctx.ndk_api,
218
+ 'android_api': self.ctx.android_api,
219
'use_setup_py': self.ctx.use_setup_py,
220
'recipes': self.ctx.recipe_build_order + self.ctx.python_modules,
221
'hostpython': self.ctx.hostpython,
0 commit comments