Commit graph

13 commits

Author SHA1 Message Date
saschawillems
6a01bb16a0 Dynamically generate android build files from build script 2017-11-04 11:00:38 +01:00
Ciro Santilli
848310ffdb Allow Linux users to build Android even if Python 2 is their default Python
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.
2017-10-26 17:09:59 +01:00
sjfricke
026dd8884a Added check for python 3.x for android build.py 2017-08-20 20:32:40 -07:00
sjfricke
ae4970a8d8 added verification of submodules for android
the current steps for android build didn't have new notion of needing to clone the submodules
2017-08-20 20:03:46 -07:00
Piasy
7e2787413b Fix Android install script issue:
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'
```
2017-06-26 14:04:31 +08:00
saschawillems
6218942a19 Wildcard copy for additional assets (android build script) 2017-06-17 11:29:30 +02:00
saschawillems
83d4887b93 Wildcard copy for additional assets (android build script) 2017-06-17 10:28:29 +02:00
saschawillems
7ef4e1eb06 Removed old python build scripts, replaced with json example definition files 2017-06-16 21:21:55 +02:00
saschawillems
9065df9a7a Reworked single android python build script with validation layer support to be used for all example builds
refs  #297, refs #303
2017-06-15 10:39:59 +02:00
saschawillems
1fc0d17b63 Skip first argument [skip ci] 2017-03-23 20:39:05 +01:00
saschawillems
97b22d3cec Skip first argument [skip ci] 2017-03-23 20:37:43 +01:00
saschawillems
e9da7a370f Pass all arguments to example android build file [skip ci] 2017-03-23 19:31:11 +01:00
saschawillems
d02e470355 Replaced windows batch files with (extended) python scripts (Refs #297) [skip ci] 2017-03-18 16:19:52 +01:00