Be able to build multi-arch android apk.

By building kiwix-android on the `android` platform, we can now build
`kiwix-lib` on all `android_<arch>` platforms, and so have all
architectures in the same apk.

Fix #108
This commit is contained in:
Matthieu Gautier
2018-05-30 19:25:35 +02:00
parent 9b85791705
commit db82455f03
12 changed files with 84 additions and 20 deletions

View File

@ -11,7 +11,7 @@ class AllBaseDependencies(Dependency):
Source = NoopSource
class Builder(NoopBuilder):
@classmethod
def get_dependencies(cls, platformInfo):
def get_dependencies(cls, platformInfo, allDeps):
base_deps = ['zlib', 'lzma', 'xapian-core', 'gumbo', 'pugixml', 'libmicrohttpd', 'libaria2', 'icu4c']
if platformInfo.build != 'win32':
base_deps += ["libmagic"]