mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 06:20:12 +01:00
Fix issue where gradle=yes would be removed by rewritemeta
This commit is contained in:
parent
e038b4424c
commit
ce61186cd2
@ -838,6 +838,8 @@ def manifest_paths(app_dir, flavours):
|
||||
os.path.join(app_dir, 'build.gradle')]
|
||||
|
||||
for flavour in flavours:
|
||||
if flavour == 'yes':
|
||||
continue
|
||||
possible_manifests.append(
|
||||
os.path.join(app_dir, 'src', flavour, 'AndroidManifest.xml'))
|
||||
|
||||
|
@ -603,8 +603,8 @@ def parse_metadata(metafile):
|
||||
# Port legacy ';' separators
|
||||
pv = [v.strip() for v in pv.replace(';', ',').split(',')]
|
||||
if pk == 'gradle':
|
||||
if len(pv) == 1 and pv[0] in ['main', 'yes', '']:
|
||||
pv = []
|
||||
if len(pv) == 1 and pv[0] in ['main', 'yes']:
|
||||
pv = ['yes']
|
||||
thisbuild[pk] = pv
|
||||
elif t == 'string' or t == 'script':
|
||||
thisbuild[pk] = pv
|
||||
|
Loading…
Reference in New Issue
Block a user