mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Fixes to gradle builds
It now adapts/seds all build.gradle files under build_dir, i.e. the root dir (even if subdir is used). This is very necessary when libraries are under parent directories or when a father build.gradle file exists.
This commit is contained in:
parent
9e09088245
commit
03b54e8506
@ -466,12 +466,11 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
||||
's@compileSdkVersion[ ]*[0-9]*@compileSdkVersion '+level+'@g',
|
||||
'build.gradle'], cwd=gradle_dir)
|
||||
|
||||
for root, dirs, files in os.walk(gradle_dir):
|
||||
root = os.path.relpath(root, gradle_dir)
|
||||
for root, dirs, files in os.walk(build_dir):
|
||||
for f in files:
|
||||
if f == 'build.gradle':
|
||||
adapt_gradle(os.path.join(gradle_dir, root, f), verbose)
|
||||
continue
|
||||
adapt_gradle(os.path.join(root, f), verbose)
|
||||
break
|
||||
|
||||
if flavour in ['main', 'yes', '']:
|
||||
flavour = ''
|
||||
|
Loading…
Reference in New Issue
Block a user