We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f385ceb commit 4db1711Copy full SHA for 4db1711
pythonforandroid/bootstraps/sdl2/build/jni/src/start.c
@@ -84,6 +84,11 @@ int main(int argc, char *argv[]) {
84
setenv("ANDROID_APP_PATH", env_argument, 1);
85
env_entrypoint = getenv("ANDROID_ENTRYPOINT");
86
env_logname = getenv("PYTHON_NAME");
87
+
88
+ if (!getenv("ANDROID_UNPACK")) {
89
+ /* ANDROID_UNPACK currently isn't set in services */
90
+ setenv("ANDROID_UNPACK", env_argument, 1);
91
+ }
92
93
if (env_logname == NULL) {
94
env_logname = "python";
0 commit comments