After this commit, users who have the `python` executable as Python 2 can do simply:
cd android/
./build-all.py
./build.py
Previously, the following would fail:
python3 build-all.py
since build-all.py did subcalls to `python build.py`.
Remove install-all.py as it is redundant with `build-all.py -deploy`,
instead of fixing it as well.
Introduce argparse since we are separating argument parsing out of
the `main()` function.
Tested in Ubuntu 16.04, behaviour should be unchanged for Windows.
1. FileNotFoundError:
``` bash
Traceback (most recent call last):
File "install-all.py", line 11, in <module>
if subprocess.call("python build-all.py -deploy %s" % BUILD_ARGUMENTS) != 0:
File "/Users/piasy/anaconda3/lib/python3.6/subprocess.py", line 267, in call
with Popen(*popenargs, **kwargs) as p:
File "/Users/piasy/anaconda3/lib/python3.6/subprocess.py", line 707, in __init__
restore_signals, start_new_session)
File "/Users/piasy/anaconda3/lib/python3.6/subprocess.py", line 1326, in _execute_child
raise child_exception_type(errno_num, err_msg)
FileNotFoundError: [Errno 2] No such file or directory: 'python build-all.py -deploy '
```
2. KeyError:
``` bash
Traceback (most recent call last):
File "build.py", line 46, in <module>
if "additional" in EXAMPLE_JSON["assets"]:
KeyError: 'assets'
```