You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package a Pygame for Android or Ren'Py for Android project.
201
+
Package a Python application for Android.
221
202
222
203
For this to work, Java and Ant need to be in your path, as does the
223
204
tools directory of the Android SDK.
@@ -229,7 +210,8 @@ def unshelve_libs():
229
210
ap.add_argument('--numeric-version', dest='numeric_version', help='The numeric version number of the project. If not given, this is automatically computed from the version.')
230
211
ap.add_argument('--dir', dest='dir', help='The directory containing public files for the project.')
231
212
ap.add_argument('--private', dest='private', help='The directory containing additional private files for the project.')
232
-
ap.add_argument('--launcher', dest='launcher', action='store_true', help='Provide this argument to build a multi-game lanucher, rather than a single game.')
help='Provide this argument to build a multi-app launcher, rather than a single app.')
233
215
ap.add_argument('--icon-name', dest='icon_name', help='The name of the project\'s launcher icon.')
234
216
ap.add_argument('--orientation', dest='orientation', default='landscape', help='The orientation that the game will display in. Usually one of "landscape" or "portrait".')
235
217
ap.add_argument('--permission', dest='permissions', action='append', help='The permissions to give this app.')
@@ -238,11 +220,10 @@ def unshelve_libs():
238
220
ap.add_argument('--presplash', dest='presplash', help='A jpeg file to use as a screen while the application is loading.')
239
221
ap.add_argument('--install-location', dest='install_location', default='auto', help='The default install location. Should be "auto", "preferExternal" or "internalOnly".')
240
222
ap.add_argument('--compile-pyo', dest='compile_pyo', action='store_true', help='Compile all .py files to .pyo, and only distribute the compiled bytecode.')
0 commit comments