mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-14 03:00:29 +03:00
update: correct error message about Android AppID
This commit is contained in:
parent
ecb6987cda
commit
6cf8fec057
1 changed files with 1 additions and 1 deletions
|
|
@ -1071,7 +1071,7 @@ def scan_apk(apk_file):
|
||||||
raise BuildException(_("{appid} from {path} is not a valid Java Package Name!")
|
raise BuildException(_("{appid} from {path} is not a valid Java Package Name!")
|
||||||
.format(appid=apk['packageName'], path=apk_file))
|
.format(appid=apk['packageName'], path=apk_file))
|
||||||
elif not common.is_strict_application_id(apk['packageName']):
|
elif not common.is_strict_application_id(apk['packageName']):
|
||||||
logging.warning(_("{appid} from {path} is not a valid Java Package Name!")
|
logging.warning(_("{appid} from {path} is not a valid Android Package Name!")
|
||||||
.format(appid=apk['packageName'], path=apk_file))
|
.format(appid=apk['packageName'], path=apk_file))
|
||||||
|
|
||||||
# Get the signature, or rather the signing key fingerprints
|
# Get the signature, or rather the signing key fingerprints
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue