mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Add support for Triple-T metadata in Flutter projects
Closes: https://gitlab.com/fdroid/fdroidserver/-/issues/975
This commit is contained in:
parent
0212f2c41f
commit
fdc88650eb
1 changed files with 3 additions and 0 deletions
|
|
@ -844,6 +844,9 @@ def copy_triple_t_store_metadata(apps):
|
||||||
gradle_subdirs.add(p)
|
gradle_subdirs.add(p)
|
||||||
if not gradle_subdirs:
|
if not gradle_subdirs:
|
||||||
gradle_subdirs.update(glob.glob(os.path.join('build', packageName, '*', 'src', '*', 'play')))
|
gradle_subdirs.update(glob.glob(os.path.join('build', packageName, '*', 'src', '*', 'play')))
|
||||||
|
if not gradle_subdirs:
|
||||||
|
# Flutter-style android subdir
|
||||||
|
gradle_subdirs.update(glob.glob(os.path.join('build', packageName, 'android', 'app', 'src', '*', 'play')))
|
||||||
|
|
||||||
for d in sorted(gradle_subdirs):
|
for d in sorted(gradle_subdirs):
|
||||||
logging.debug('Triple-T Gradle Play Publisher: ' + d)
|
logging.debug('Triple-T Gradle Play Publisher: ' + d)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue