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

Use src/ rather than source/

This commit is contained in:
Daniel Martí 2013-08-03 18:53:01 +02:00
parent 8c8a20bcb1
commit 89a9447a8c

View File

@ -876,7 +876,7 @@ def retrieve_string(app_dir, string_id):
# Find the AM.xml - try the new gradle method first.
def manifest_path(app_dir):
gradlepath = os.path.join(app_dir, 'source', 'main', 'AndroidManifest.xml')
gradlepath = os.path.join(app_dir, 'src', 'main', 'AndroidManifest.xml')
if os.path.exists(gradlepath):
return gradlepath
rootpath = os.path.join(app_dir, 'AndroidManifest.xml')