diff --git a/buildozer/targets/android.py b/buildozer/targets/android.py index bbca16e81..13e1ba3ff 100644 --- a/buildozer/targets/android.py +++ b/buildozer/targets/android.py @@ -27,6 +27,7 @@ from buildozer.target import Target from os import environ from os.path import exists, join, realpath, expanduser, basename, relpath +from platform import architecture from shutil import copyfile from glob import glob @@ -447,7 +448,7 @@ def _check_aidl(self, v_build_tools): show_output=False) if returncode != 1: self.buildozer.error('Aidl cannot be executed') - if sys.maxint > 2**32: + if architecture()[0] == '64bit': self.buildozer.error('') self.buildozer.error( 'You might have missed to install 32bits libs')