rename 'app-id' to standard Android 'applicationId'

* https://developer.android.com/studio/build/application-id.html
* https://sites.google.com/a/android.com/tools/tech-docs/new-build-system/applicationid-vs-packagename

This only changes the term in the human texts, not var names or CLI flags.
This commit is contained in:
Hans-Christoph Steiner 2017-09-15 11:41:39 +02:00
parent 278d67d960
commit fa0d618d2f
9 changed files with 9 additions and 9 deletions

View file

@ -409,7 +409,7 @@ def main():
parser.add_argument(
"app_id", nargs='*',
help=_("app-id with optional versioncode in the form APPID[:VERCODE]"))
help=_("applicationId with optional versionCode in the form APPID[:VERCODE]"))
parser.add_argument(
"-l", "--latest", action="store_true", default=False,
help=_("Scan only the latest version of each package"))