|
4 | 4 | Step 1: compile the toolchain |
5 | 5 | ----------------------------- |
6 | 6 |
|
7 | | -If you want to compile the toolchain with only kivy and pyjnius module :: |
| 7 | +If you want to compile the toolchain with only kivy module:: |
8 | 8 |
|
9 | | - ./distribute.sh -m "pyjnius kivy" |
| 9 | + ./distribute.sh -m "kivy" |
10 | 10 |
|
11 | 11 | After a long time, you'll get a "dist/default" directory containing all the compiled |
12 | 12 | libraries and build.py script to package your application using thoses |
13 | 13 | libraries. |
14 | 14 |
|
15 | | -You can include other modules (or "recipes") to compile using `-m`:: |
| 15 | +You can include other modules (or "recipes") to compile using `-m`. Put the C |
| 16 | +libraries to compile before any Python module, order is important. |
| 17 | + |
| 18 | + ./distribute.sh -m "openssl kivy" |
| 19 | + ./distribute.sh -m "pil ffmpeg kivy" |
16 | 20 |
|
17 | | - ./distribute.sh -m "openssl pyjnius kivy" |
18 | | - ./distribute.sh -m "pil ffmpeg pyjnius kivy" |
19 | 21 |
|
20 | 22 | For a full list, refer to :ref:`recipes` |
21 | 23 |
|
@@ -94,11 +96,13 @@ Available options to `build.py`:: |
94 | 96 | "preferExternal" or "internalOnly". |
95 | 97 | --compile-pyo Compile all .py files to .pyo, and only distribute the |
96 | 98 | compiled bytecode. |
| 99 | + --intent-filters INTENT_FILTERS |
| 100 | + Add intent-filters xml rules to AndroidManifest.xml |
97 | 101 | --blacklist BLACKLIST |
98 | 102 | Use a blacklist file to match unwanted file in the |
99 | 103 | final APK |
100 | | - |
101 | | - --intent-filters FILE |
102 | | - Inject the content of FILE into the activity |
103 | | - definition in the AndroidManifest.xml |
| 104 | + --sdk SDK_VERSION Android SDK version to use. Default to 8 |
| 105 | + --minsdk MIN_SDK_VERSION |
| 106 | + Minimum Android SDK version to use. Default to 8 |
| 107 | + --window Indicate if the application will be windowed |
104 | 108 |
|
0 commit comments