Skip to content

Commit

Permalink
Fixed APP_PLATFORM setting
Browse files Browse the repository at this point in the history
  • Loading branch information
inclement committed Oct 18, 2018
1 parent cf1491a commit 5acace3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonforandroid/archs.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def get_env(self, with_flags_in_cc=True):
env['PATH'] = environ['PATH']

env['ARCH'] = self.arch
env['NDK_API'] = str(self.ctx.ndk_api)
env['NDK_API'] = 'android-{}'.format(str(self.ctx.ndk_api))

if self.ctx.python_recipe and self.ctx.python_recipe.from_crystax:
env['CRYSTAX_PYTHON_VERSION'] = self.ctx.python_recipe.version
Expand Down

0 comments on commit 5acace3

Please sign in to comment.