1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Apk output path is build/outputs/apk/*.apk since 0.11

This commit is contained in:
Daniel Martí 2014-06-12 10:04:20 +02:00
parent 9779979e3a
commit 71a09b700e

View File

@ -760,7 +760,10 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
else:
name = '-'.join([basename, '-'.join(flavours), 'release', 'unsigned'])
dd = os.path.normpath(dd)
src = os.path.join(dd, 'build', 'apk', name + '.apk')
if thisbuild['gradlepluginver'] >= LooseVersion('0.11'):
src = os.path.join(dd, 'build', 'outputs', 'apk', name + '.apk')
else:
src = os.path.join(dd, 'build', 'apk', name + '.apk')
elif thisbuild['type'] == 'ant':
stdout_apk = '\n'.join([
line for line in p.stdout.splitlines() if '.apk' in line])