Ошибка при создании apk для Android из buildozer скрипта Python с использованием kivyAndroid

Форум для тех, кто программирует под Android
Ответить Пред. темаСлед. тема
Anonymous
 Ошибка при создании apk для Android из buildozer скрипта Python с использованием kivy

Сообщение Anonymous »

Я хочу собрать apk на основе сценария Python, созданного с использованием пакета kivy. Для этого я использую этот скрипт из совместной работы Google.
Вот скрипт main.py:

Код: Выделить всё

import youtube_dl
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.button import Button
from kivy.uix.textinput import TextInput

class DownloadLayout(BoxLayout):
def __init__(self, **kwargs):
super().__init__(**kwargs)

# Create a text input field
self.text_input = TextInput(hint_text="Paste YouTube link here")
self.add_widget(self.text_input)

# Create a download button
self.download_button = Button(text="Download")
self.download_button.bind(on_release=self.download_video)
self.add_widget(self.download_button)

def download_video(self, *args):
# Get the YouTube link from the text input field
youtube_link = self.text_input.text

# Download the video using youtube-dl
ydl_opts = {}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([youtube_link])

class DownloadApp(App):
def build(self):
return DownloadLayout()

if __name__ == '__main__':
DownloadApp().run()
Вот файл buildozer.spec:

Код: Выделить всё

[app]

# (str) Title of your application
title = My Application

# (str) Package name
package.name = myapp

# (str) Package domain (needed for android/ios packaging)
package.domain = org.test

# (str) Source code where the main.py live
source.dir = .

# (list) Source files to include (let empty to include all the files)
source.include_exts = py,png,jpg,kv,atlas

# (list) List of inclusions using pattern matching
#source.include_patterns = assets/*,images/*.png

# (list) Source files to exclude (let empty to not exclude anything)
#source.exclude_exts = spec

# (list) List of directory to exclude (let empty to not exclude anything)
#source.exclude_dirs = tests, bin, venv

# (list) List of exclusions using pattern matching
# Do not prefix with './'
#source.exclude_patterns = license,images/*/*.jpg

# (str) Application versioning (method 1)
version = 0.1

# (str) Application versioning (method 2)
# version.regex = __version__ = ['"](.*)['"]
# version.filename = %(source.dir)s/main.py

# (list) Application requirements
# comma separated e.g. requirements = sqlite3,kivy
requirements = python3,kivy, kivymd, pillow

# change the major version of python used by the app
osx.python_version = 3

# Kivy version to use
osx.kivy_version = 1.9.1

Вот журнал ошибок при запуске команды buildozer android debug:

Код: Выделить всё

[DEBUG]:    clang-14: error: no such file or directory: 'jnius/jnius.c'
[DEBUG]:    clang-14: error: no input files
[DEBUG]:    error: command '/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang' failed with exit code 1
Exception in thread background thread for pid 52253:
Traceback (most recent call last):
File "/usr/lib/python3.10/threading.py", line 1016, in _bootstrap_inner
self.run()
File "/usr/lib/python3.10/threading.py", line 953, in run
self._target(*self._args, **self._kwargs)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 1641, in wrap
fn(*rgs, **kwargs)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 2569, in background_thread
handle_exit_code(exit_code)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 2269, in fn
return self.command.handle_command_exit_code(exit_code)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 869, in handle_command_exit_code
raise exc
sh.ErrorReturnCode_1:

RAN: /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

STDERR:

[INFO]:    pyjnius first build failed (as expected)
[INFO]:    Running cython where appropriate
[INFO]:    Cythonize jnius/jnius.pyx
[DEBUG]:   -> running python3 -cimport sys; from Cython.Compiler.Main import setuptools_main; sys.exit(setuptools_main()); ./jnius/jnius.pyx
[DEBUG]:    /usr/local/lib/python3.10/dist-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2).  This will change in a later release! File: /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/pyjnius/jnius/jnius.pyx
[DEBUG]:      tree = Parsing.p_module(s, pxd, full_module_name)
[DEBUG]:   ->  running python3 setup.py build_ext -v
[DEBUG]:    warning: [options] bootstrap class path not set in conjunction with -source 7
[DEBUG]:    1 warning
[DEBUG]:    running build_ext
[DEBUG]:    building 'jnius' extension
[DEBUG]:    /root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include -DANDROID -I/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include -I/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/python-installs/myapp/armeabi-v7a/include/python3.1 -fPIC -I/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/Include -I/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build -c jnius/jnius.c -o build/temp.linux-x86_64-3.10/jnius/jnius.o
[DEBUG]:    jnius/jnius.c:12406:19: warning: assigning to 'jchar *' (aka 'unsigned short *') from 'const jchar *' (aka 'const unsigned short *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
[DEBUG]:      __pyx_v_j_chars = (__pyx_v_j_env[0])->GetStringChars(__pyx_v_j_env, __pyx_v_j_string, NULL);
[DEBUG]:                      ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:54433:5: error: expression is not assignable
[DEBUG]:        ++Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:54435:5: error: expression is not assignable
[DEBUG]:        --Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:54549:5: error: expression is not assignable
[DEBUG]:        ++Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:54551:5: error: expression is not assignable
[DEBUG]:        --Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:54803:5: error: expression is not assignable
[DEBUG]:        ++Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:54805:5: error: expression is not assignable
[DEBUG]:        --Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:55697:5: error: expression is not assignable
[DEBUG]:        ++Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:55699:5: error: expression is not assignable
[DEBUG]:        --Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:56008:5: error: expression is not assignable
[DEBUG]:        ++Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:56010:5: error: expression is not assignable
[DEBUG]:        --Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:56258:5: error: expression is not assignable
[DEBUG]:        ++Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:56260:5: error: expression is not assignable
[DEBUG]:        --Py_REFCNT(o);
[DEBUG]:        ^ ~~~~~~~~~~~~
[DEBUG]:    jnius/jnius.c:59573:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
[DEBUG]:            return PyUnicode_FromUnicode(NULL, 0);
[DEBUG]:                   ^
[DEBUG]:    /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h:551:1: note: 'PyUnicode_FromUnicode' has been explicitly marked deprecated here
[DEBUG]:    Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
[DEBUG]:    ^
[DEBUG]:    /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h:513:54: note: expanded from macro 'Py_DEPRECATED'
[DEBUG]:    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
[DEBUG]:                                                         ^
[DEBUG]:    jnius/jnius.c:60809:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
[DEBUG]:            return PyUnicode_FromUnicode(NULL, 0);
[DEBUG]:                   ^
[DEBUG]:    /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h:551:1: note:  'PyUnicode_FromUnicode' has been explicitly marked deprecated here
[DEBUG]:    Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
[DEBUG]:    ^
[DEBUG]:    /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h:513:54: note: expanded from macro 'Py_DEPRECATED'
[DEBUG]:    #define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
[DEBUG]:                                                         ^
[DEBUG]:    3 warnings and 12 errors generated.
[DEBUG]:    error: command '/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang' failed with exit code 1
Exception in thread background thread for pid 52311:
Traceback (most recent call last):
File "/usr/lib/python3.10/threading.py", line 1016, in _bootstrap_inner
self.run()
File "/usr/lib/python3.10/threading.py", line 953, in run
self._target(*self._args, **self._kwargs)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 1641, in wrap
fn(*rgs, **kwargs)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 2569, in background_thread
handle_exit_code(exit_code)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 2269, in fn
return self.command.handle_command_exit_code(exit_code)
File "/root/.local/lib/python3.10/site-packages/sh.py", line 869, in handle_command_exit_code
raise exc
sh.ErrorReturnCode_1:

RAN: /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

STDOUT:
warning: [options] bootstrap class path not set in conjunction with -source 7
1 warning
running build_ext
building 'jnius' extension
jnius/jnius.c:12406:19: warning: assigning to 'jchar *' (aka 'unsigned short *') from 'const jchar *' (aka 'const unsigned short *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers]
__pyx_v_j_chars = (__pyx_v_j_env[0])->GetStringChars(__pyx_v_j_env, __pyx_v_j_string, NULL);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
jnius/jnius.c:56258:5: error: expression is not assignable
++Py_REFCNT(o);
^ ~~~~~~~~~~~~
jnius/jnius.c:56260:5: error: expression is not assignable
--Py_REFCNT(o);
^ ~~~~~~~~~~~~
jnius/jnius.c:59573:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
return PyUnicode_FromUnicode(NULL, 0);
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h:551:1: note: 'PyUnicode_FromUnicode' has been explicitly marked deprecated here
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h:513:54: note: expanded from macro 'Py_DEPRECATED'
#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
^
jnius/jnius.c:60809:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
return PyUnicode_FromUnicode(NULL, 0);
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h:551:1: note: 'PyUnicode_FromUnicode' has been explicitly marked deprecated here
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h:513:54: note: expanded from macro 'Py_DEPRECATED'
#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
^
3 warnings and 12 errors generated.
error: command '/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang' failed with exit code 1

STDERR:

[INFO]:    STDOUT (last 20 lines of 64):
jnius/jnius.c:59573:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
return PyUnicode_FromUnicode(NULL, 0);
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h:551:1: note: 'PyUnicode_FromUnicode' has been explicitly marked deprecated here
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h:513:54: note: expanded from macro 'Py_DEPRECATED'
#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
^
jnius/jnius.c:60809:16: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations]
return PyUnicode_FromUnicode(NULL, 0);
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h:551:1: note: 'PyUnicode_FromUnicode' has been explicitly marked deprecated here
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
^
/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h:513:54: note: expanded from macro 'Py_DEPRECATED'
#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
^
3 warnings and 12 errors generated.
error: command '/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang' failed with exit code 1
[INFO]:    STDERR:

[INFO]:    ENV:
export HOME='/root'
export CFLAGS='-target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -I/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include'
export CXXFLAGS='-target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC'
export CPPFLAGS='-DANDROID -I/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/include -I/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/python-installs/myapp/armeabi-v7a/include/python3.1'
export LDFLAGS='  -L/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/libs_collections/myapp/armeabi-v7a -L/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build -lpython3.10 -L/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/libs_collections/myapp/armeabi-v7a -L/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/libs_collections/myapp  -L/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/bootstrap_builds/sdl2/obj/local/armeabi-v7a '
export LDLIBS='-lm'
export PATH='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin:/root/.buildozer/android/platform/android-ndk-r25b:/root/.buildozer/android/platform/android-sdk/tools:/root/.buildozer/android/platform/apache-ant-1.9.4/bin:/opt/bin:/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tools/node/bin:/tools/google-cloud-sdk/bin'
export CC='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC'
export CXX='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC'
export AR='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ar'
export RANLIB='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ranlib'
export STRIP='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip --strip-unneeded'
export READELF='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-readelf'
export OBJCOPY='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-objcopy'
export MAKE='make -j2'
export ARCH='armeabi-v7a'
export NDK_API='android-21'
export LDSHARED='/root/.buildozer/android/platform/android-ndk-r25b/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -target armv7a-linux-androideabi21 -fomit-frame-pointer -march=armv7-a -mfloat-abi=softfp -mfpu=vfp -mthumb -fPIC -shared'
export BUILDLIB_PATH='/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/lib.linux-x86_64-3.10'
export PYTHONNOUSERSITE='1'
export LANG='en_GB.UTF-8'
export PYTHONPATH='/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/Lib:/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/Lib/site-packages:/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/lib.linux-x86_64-3.10:/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/temp.linux-x86_64-3.10:/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/build/scripts-3.10'
export LIBLINK='NOTNONE'
export COPYLIBS='1'
export LIBLINK_PATH='/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/objects_pyjnius'
export NDKPLATFORM='NOTNONE'

[INFO]:    COMMAND:
cd /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/pyjnius-sdl2/armeabi-v7a__ndk_target_21/pyjnius &&  /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 setup.py build_ext -v

[WARNING]: ERROR: /content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a/build/other_builds/hostpython3/desktop/hostpython3/native-build/python3 failed!

# Command failed:  ['/usr/bin/python3', '-m', 'pythonforandroid.toolchain', 'create', '--dist_name=myapp', '--bootstrap=sdl2', '--requirements=python3,kivy,kivymd,pillow', '--arch=arm64-v8a', '--arch=armeabi-v7a', '--copy-libs', '--color=always', '--storage-dir=/content/.buildozer/android/platform/build-arm64-v8a_armeabi-v7a', '--ndk-api=21', '--ignore-setup-py',  ' - - d e b u g ' ] < b r   / > #   E N V I R O N M E N T : < b r   / > #           S H E L L   =   ' / b i n / b a s h ' < b r   / > #           N V _ L I B C U B L A S _ V E R S I O N   =   ' 1 1 . 1 1 . 3 . 6 - 1 ' < b r   / > #           N V I D I A _ V I S I B L E _ D E V I C E S   =   ' a l l ' < b r   / > #           C O L A B _ J U P Y T E R _ T R A N S P O R T   =   ' i p c ' < b r   / > #           N V _ N V M L _ D E V _ V E R S I O N   =   ' 1 1 . 8 . 8 6 - 1 ' < b r   / > #           N V _ C U D N N _ P A C K A G E _ N A M E   =   ' l i b c u d n n 8 ' < b r   / > #           C G R O U P _ M E M O R Y _ E V E N T S   =   ' / s y s / f s / c g r o u p / m e m o r y . e v e n t s   / v a r / c o l a b / c g r o u p / j u p y t e r - c h i l d r e n / m e m o r y . e v e n t s ' < b r   / > #           N V _ L I B N C C L _ D E V _ P A C K A G E   =   ' l i b n c c l - d e v = 2 . 1 6 . 2 - 1 + c u d a 1 1 . 8 ' < b r   / > #           N V _ L I B N C C L _ D E V _ P A C K A G E _ V E R S I O N   =   ' 2 . 1 6 . 2 - 1 ' < b r   / > #           V M _ G C E _ M E T A D A T A _ H O S T   =   ' 1 6 9 . 2 5 4 . 1 6 9 . 2 5 3 ' < b r   / > #           H O S T N A M E   =   ' d a e 9 4 e 6 f 0 e e 1 ' < b r   / > #           T B E _ R U N T I M E _ A D D R   =   ' 1 7 2 . 2 8 . 0 . 1 : 8 0 1 1 ' < b r   / > #           G C E _ M E T A D A T A _ T I M E O U T   =   ' 3 ' < b r   / > #           N V I D I A _ R E Q U I R E _ C U D A   =   ( ' c u d a & g t ; = 1 1 . 8   b r a n d = t e s l a , d r i v e r & g t ; = 4 5 0 , d r i v e r & l t ; 4 5 1   ' < b r   / >   ' b r a n d = t e s l a , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   b r a n d = u n k n o w n , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   ' < b r   / >   ' b r a n d = n v i d i a , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   b r a n d = n v i d i a r t x , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   ' < b r   / >   ' b r a n d = g e f o r c e , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   b r a n d = g e f o r c e r t x , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   ' < b r   / >   ' b r a n d = q u a d r o , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   b r a n d = q u a d r o r t x , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   ' < b r   / >   ' b r a n d = t i t a n , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   b r a n d = t i t a n r t x , d r i v e r & g t ; = 4 7 0 , d r i v e r & l t ; 4 7 1   ' < b r   / >   ' b r a n d = t e s l a , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   b r a n d = u n k n o w n , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   ' < b r   / >   ' b r a n d = n v i d i a , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   b r a n d = n v i d i a r t x , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   ' < b r   / >   ' b r a n d = g e f o r c e , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   b r a n d = g e f o r c e r t x , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   ' < b r   / >   ' b r a n d = q u a d r o , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   b r a n d = q u a d r o r t x , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   ' < b r   / >   ' b r a n d = t i t a n , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   b r a n d = t i t a n r t x , d r i v e r & g t ; = 5 1 0 , d r i v e r & l t ; 5 1 1   ' < b r   / >   ' b r a n d = t e s l a , d r i v e r & g t ; = 5 1 5 , d r i v e r & l t ; 5 1 6   b r a n d = u n k n o w n , d r i v e r & g t ; = 5 1 5 , d r i v e r=515,driver=515,driver=515,driver=515,driver=515,driver=515,driver=515,driver=515,driver

Подробнее здесь: [url]https://stackoverflow.com/questions/76356642/error-while-building-android-apk-from-buildozer-of-a-python-script-using-kivy[/url]
Реклама
Ответить Пред. темаСлед. тема

Быстрый ответ

Изменение регистра текста: 
Смайлики
:) :( :oops: :roll: :wink: :muza: :clever: :sorry: :angel: :read: *x)
Ещё смайлики…
   
К этому ответу прикреплено по крайней мере одно вложение.

Если вы не хотите добавлять вложения, оставьте поля пустыми.

Максимально разрешённый размер вложения: 15 МБ.

  • Похожие темы
    Ответы
    Просмотры
    Последнее сообщение

Вернуться в «Android»