kivymd / KivyMD

KivyMD is a collection of Material Design compliant widgets for use with Kivy, a framework for cross-platform, touch-enabled graphical applications. https://youtube.com/c/KivyMD https://twitter.com/KivyMD https://habr.com/ru/users/kivymd https://stackoverflow.com/tags/kivymd
https://kivymd.readthedocs.io
MIT License
2.23k stars 672 forks source link

ReferenceError: (...) Error when using left_action_items #273

Closed Felipe738743872 closed 4 years ago

Felipe738743872 commented 4 years ago

Description of the Bug

Hi! When I use "left_action_items" and "right_action_items" on Screen 1, the app closes immediately, the app will work fine when removing action_items. The bug also happens using KivyMD-Master... The bug does not happen on the PC...

buildozer android logcat | grep python

ReferenceError: weakly-referenced object no longer exists

main.py

from kivymd.app import MDApp
from kivy.uix.screenmanager import Screen
from kivy.core.window import Window
from kivymd.uix.dialog import MDDialog
from kivymd.uix.button import MDFlatButton
from kivy.lang.builder import Builder as NewLanguage

KV = """
#:import MDFillRoundFlatButton kivymd.uix.button.MDFillRoundFlatButton

ScreenManager:
    Menu:
        name: "menu"
        ScrollView:
            FloatLayout:
                size_hint_y: 1.8

                MDFillRoundFlatButton
                    pos_hint: {"center_x":.500, "center_y":1.175}
                    size_hint: 1, 1
                    md_bg_color: 0.655, 0.300, 0.300, 1

                ViewMiniButton:
                    text: "screen 1"
                    pos_hint: {"center_y":.475, "center_x":.16}
                    on_release:
                        app.root.current = "screen1"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_1._refresh_tabs()

                ViewMiniButton:
                    text: "screen 2"
                    pos_hint: {"center_y":.475, "center_x":.510}
                    on_release:
                        app.root.current = "screen2"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_2._refresh_tabs()

                ViewMiniButton:
                    text: "screen 3"
                    pos_hint: {"center_y":.475, "center_x":.840}
                    on_release:
                        app.root.current = "screen3"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_3._refresh_tabs()

                ViewMiniButton:
                    text: "screen 4"
                    pos_hint: {"center_y":.250, "center_x":.16}
                    on_release:
                        app.root.current = "screen4"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_4._refresh_tabs()

                ViewMiniButton:
                    text: "screen 5"
                    pos_hint: {"center_y":.250, "center_x":.510}
                    on_release:
                        app.root.current = "screen5"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_5._refresh_tabs()

                ViewMiniButton:
                    text: "screen 6"
                    pos_hint: {"center_y":.250, "center_x":.840}
                    on_release:
                        app.root.current = "screen6"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_6._refresh_tabs()

                ViewMiniButton:
                    text: "screen 7"
                    pos_hint: {"center_y":.025, "center_x":.16}
                    on_release:
                        app.root.current = "screen7"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_7._refresh_tabs()

                ViewMiniButton:
                    text: "screen 8"
                    pos_hint: {"center_y":.025, "center_x":.510}
                    on_release:
                        app.root.current = "screen8"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_8._refresh_tabs()

                ViewMiniButton:
                    text: "screen 9"
                    pos_hint: {"center_y":.025, "center_x":.840}
                    on_release:
                        app.root.current = "screen9"
                        app.root.transition.direction = "left"
                        on_enter: bottom_navigation_9._refresh_tabs()

        MDToolbar
            title: "home screen"
            md_bg_color: 0, 0.5, 0.5, 1
            elevation: 12
            size_hint: 1, 0.1
            pos_hint: {"top":1}
            left_action_items: [["menu", lambda x: self]]
            right_action_items: [["power", lambda x: app.dialog_exit()]]

    Screen1
        name: "screen1"
        ViewBoxLayout:

            MDToolbar
                title: "screen 1"
                md_bg_color: 0, 0.5, 0.5, 1
                size_hint: 1, 0.1
                pos_hint: {"top":1}
                left_action_items: [["arrow-left", lambda x: app.back_screen()]]
                right_action_items: [["power", lambda x: app.dialog_exit()]]

            MDBottomNavigation:
                id: bottom_navigation_1
                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen2
        name: "screen2"
        ViewBoxLayout:

            MDBottomNavigation:
                id: bottom_navigation_2
                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen3
        name: "screen3"
        ViewBoxLayout:

            MDBottomNavigation:
                id: bottom_navigation_3

                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen4
        name: "screen4"
        ViewBoxLayout:

            MDBottomNavigation
                id: bottom_navigation_4
                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen5
        name: "screen5"
        ViewBoxLayout:

            MDBottomNavigation:
                id: bottom_navigation_5
                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen6
        name: "screen6"
        ViewBoxLayout:

            MDBottomNavigation:
                id: bottom_navigation_6
                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen7
        name: "screen7"
        ViewBoxLayout:

            MDBottomNavigation:
                id: bottom_navigation_7
                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen8
        name: "screen8"
        ViewBoxLayout:

            MDBottomNavigation:
                id: bottom_navigation_8

                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

    Screen9
        name: "screen9"
        ViewBoxLayout:

            MDBottomNavigation:
                id: bottom_navigation_9

                MDBottomNavigationItem:
                    text: "example 1"
                    icon: "nutrition"
                    name: "screen1"

                MDBottomNavigationItem:
                    text: "example 2"
                    icon: "card-text"
                    name: "screen2"

<ViewMiniButton@ButtonBehavior+Label>:
    font_size: '16dp'
    size_hint: .235, .030
    canvas.before:
        Color:
            rgba: 0.5, 0.1, 0.7, 1
        Ellipse:
            pos:self.pos
            size:self.height,self.height
        Ellipse:
            pos:self.x+self.width-self.height,self.y
            size:self.height,self.height
        Rectangle:
            pos:self.x+self.height/2.0,self.y
            size:self.width-self.height,self.height

<ViewBoxLayout@BoxLayout>:
    orientation: "vertical"

<ViewMDToolbar@MDToolbar>:
    pos_hint: {"top":1}
"""

class ViewClass(Screen):
    def on_pre_enter(self):
        Window.bind(on_keyboard=self.voltar)
    def voltar(self, window, key, *args):
        if key == 27:
            MDApp.get_running_app().root.transition.direction = 'right'
            MDApp.get_running_app().root.current = 'menu'
            return True
    def on_pre_leave(self):
        Window.unbind(on_keyboard=self.voltar)

class Menu(Screen):
    def on_pre_enter(self):
        Window.bind(on_keyboard=self.voltar)
    def voltar(self, window, key, *args):
        if key == 27:
            MDApp.get_running_app().dialog_exit()
            return True
    def on_pre_leave(self):
        Window.unbind(on_keyboard=self.voltar)

class Screen1(ViewClass):
    pass

class Screen2(ViewClass):
    pass

class Screen3(ViewClass):
    pass

class Screen4(ViewClass):
    pass

class Screen5(ViewClass):
    pass

class Screen6(ViewClass):
    pass

class Screen7(ViewClass):
    pass

class Screen8(ViewClass):
    pass

class Screen9(ViewClass):
    pass

class Builder(MDApp):
    def build(self, *args):
        self.theme_cls.theme_style = 'Dark'
        return NewLanguage.load_string(KV)

    def back_screen(self):
        MDApp.get_running_app().root.transition.direction = 'right'
        MDApp.get_running_app().root.current = 'menu'

    def dialog_exit(self):
        self.dialog = MDDialog(
            text="Você quer sair?",
            size_hint=(0.50, 0.40),
            radius=[20, 7, 20, 7],
            buttons=[
                MDFlatButton(
                    text="Cancelar", text_color=self.theme_cls.primary_color,
                    on_release=self.auto_dismiss),
                MDFlatButton(
                    text="Sim", text_color=self.theme_cls.primary_color,
                    on_release=self.stop)
            ]
        )
        self.dialog.open()

    def auto_dismiss(self, text_of_selection):
        self.dialog.dismiss()

Builder().run()

buildozer.spec

[app]

title = My Application
package.name = myapp
package.domain = org.test
source.dir = .
source.include_exts = py,png,jpg,kv,atlas
version = 0.1
requirements = python3, kivy, kivymd, plyer
orientation = portrait
osx.python_version = 3
osx.kivy_version = 1.11.1
fullscreen = 1
android.permissions = VIBRATE
android.api = 29
android.minapi = 21
android.arch = armeabi-v7a
ios.kivy_ios_url = https://github.com/kivy/kivy-ios
ios.kivy_ios_branch = master
ios.ios_deploy_url = https://github.com/phonegap/ios-deploy
ios.ios_deploy_branch = 1.7.0
[buildozer]
log_level = 2
warn_on_root = 1

Versions

HeaTTheatR commented 4 years ago

@Felipe738743872 Show me full log.

Felipe738743872 commented 4 years ago

log | grep python --->

(venv) Felipes-iMac:TEST felipe$ buildozer android logcat | grep python
04-28 16:10:40.290 31825 31825 V pythonutil: Checking pattern libpng16\.so against libssl1.1.so
04-28 16:10:40.290 31825 31825 V pythonutil: Checking pattern libpng16\.so against libpython3.8m.so
04-28 16:10:40.290 31825 31825 V pythonutil: Checking pattern libpng16\.so against libffi.so
04-28 16:10:40.291 31825 31825 V pythonutil: Checking pattern libpng16\.so against libcrypto1.1.so
04-28 16:10:40.291 31825 31825 V pythonutil: Checking pattern libpng16\.so against libSDL2_mixer.so
04-28 16:10:40.291 31825 31825 V pythonutil: Checking pattern libpng16\.so against libmain.so
04-28 16:10:40.291 31825 31825 V pythonutil: Checking pattern libpng16\.so against libSDL2_image.so
04-28 16:10:40.291 31825 31825 V pythonutil: Checking pattern libpng16\.so against libsqlite3.so
04-28 16:10:40.291 31825 31825 V pythonutil: Checking pattern libpng16\.so against libSDL2.so
04-28 16:10:40.292 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libSDL2_ttf.so
04-28 16:10:40.293 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libhidapi.so
04-28 16:10:40.293 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libssl1.1.so
04-28 16:10:40.293 31825 31825 V pythonutil: Pattern libssl.*\.so matched file libssl1.1.so
04-28 16:10:40.293 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libpython3.8m.so
04-28 16:10:40.293 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libffi.so
04-28 16:10:40.293 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libcrypto1.1.so
04-28 16:10:40.293 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libSDL2_mixer.so
04-28 16:10:40.293 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libmain.so
04-28 16:10:40.294 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libSDL2_image.so
04-28 16:10:40.295 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libsqlite3.so
04-28 16:10:40.295 31825 31825 V pythonutil: Checking pattern libssl.*\.so against libSDL2.so
04-28 16:10:40.296 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_ttf.so
04-28 16:10:40.296 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libhidapi.so
04-28 16:10:40.297 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libssl1.1.so
04-28 16:10:40.297 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libpython3.8m.so
04-28 16:10:40.297 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libffi.so
04-28 16:10:40.297 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libcrypto1.1.so
04-28 16:10:40.298 31825 31825 V pythonutil: Pattern libcrypto.*\.so matched file libcrypto1.1.so
04-28 16:10:40.298 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_mixer.so
04-28 16:10:40.298 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libmain.so
04-28 16:10:40.298 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_image.so
04-28 16:10:40.298 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libsqlite3.so
04-28 16:10:40.298 31825 31825 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2.so
04-28 16:10:40.299 31825 31825 V pythonutil: Loading library: sqlite3
04-28 16:10:40.304 31825 31825 V pythonutil: Loading library: ffi
04-28 16:10:40.306 31825 31825 V pythonutil: Loading library: SDL2
04-28 16:10:40.313 31825 31825 V pythonutil: Loading library: SDL2_image
04-28 16:10:40.317 31825 31825 V pythonutil: Loading library: SDL2_mixer
04-28 16:10:40.320 31825 31825 V pythonutil: Loading library: SDL2_ttf
04-28 16:10:40.323 31825 31825 V pythonutil: Loading library: ssl1.1
04-28 16:10:40.328 31825 31825 V pythonutil: Loading library: crypto1.1
04-28 16:10:40.329 31825 31825 V pythonutil: Loading library: python2.7
04-28 16:10:40.333 31825 31825 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython2.7.so"
04-28 16:10:40.334 31825 31825 V pythonutil: Loading library: python3.5m
04-28 16:10:40.336 31825 31825 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython3.5m.so"
04-28 16:10:40.336 31825 31825 V pythonutil: Loading library: python3.6m
04-28 16:10:40.337 31825 31825 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython3.6m.so"
04-28 16:10:40.337 31825 31825 V pythonutil: Loading library: python3.7m
04-28 16:10:40.339 31825 31825 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython3.7m.so"
04-28 16:10:40.339 31825 31825 V pythonutil: Loading library: python3.8m
04-28 16:10:40.345 31825 31825 V pythonutil: Loading library: main
04-28 16:10:40.349 31825 31825 V pythonutil: Failed to load _io.so or unicodedata.so...but that's okay.
04-28 16:10:40.350 31825 31825 V pythonutil: Unsatisfied linker when loading ctypes
04-28 16:10:40.350 31825 31825 V pythonutil: Loaded everything!
04-28 16:11:44.068 31825 31905 I python  : Initializing Python for Android
04-28 16:11:44.068 31825 31905 I python  : Setting additional env vars from p4a_env_vars.txt
04-28 16:11:44.069 31825 31905 I python  : Changing directory to the one provided by ANDROID_ARGUMENT
04-28 16:11:44.069 31825 31905 I python  : /data/user/0/org.test.myapp/files/app
04-28 16:11:44.069 31825 31905 I python  : Preparing to initialize python
04-28 16:11:44.069 31825 31905 I python  : _python_bundle dir exists
04-28 16:11:44.069 31825 31905 I python  : calculated paths to be...
04-28 16:11:44.069 31825 31905 I python  : /data/user/0/org.test.myapp/files/app/_python_bundle/stdlib.zip:/data/user/0/org.test.myapp/files/app/_python_bundle/modules
04-28 16:11:44.070 31825 31905 I python  : set wchar paths...
04-28 16:11:44.257 31825 31905 I python  : Initialized python
04-28 16:11:44.258 31825 31905 I python  : AND: Init threads
04-28 16:11:44.260 31825 31905 I python  : testing python print redirection
04-28 16:11:44.262 31825 31905 I python  : Android path ['.', '/data/user/0/org.test.myapp/files/app/_python_bundle/stdlib.zip', '/data/user/0/org.test.myapp/files/app/_python_bundle/modules', '/data/user/0/org.test.myapp/files/app/_python_bundle/site-packages']
04-28 16:11:44.263 31825 31905 I python  : os.environ is environ({'PATH': '/sbin:/system/sbin:/system/bin:/system/xbin:/odm/bin:/vendor/bin:/vendor/xbin', 'DOWNLOAD_CACHE': '/data/cache', 'ANDROID_BOOTLOGO': '1', 'ANDROID_ROOT': '/system', 'ANDROID_ASSETS': '/system/app', 'ANDROID_DATA': '/data', 'ANDROID_STORAGE': '/storage', 'EXTERNAL_STORAGE': '/sdcard', 'ASEC_MOUNTPOINT': '/mnt/asec', 'BOOTCLASSPATH': '/system/framework/qcom.fmradio.jar:/system/framework/QPerformance.jar:/system/framework/UxPerformance.jar:/system/framework/tcmiface.jar:/system/framework/telephony-ext.jar:/system/framework/core-oj.jar:/system/framework/core-libart.jar:/system/framework/conscrypt.jar:/system/framework/okhttp.jar:/system/framework/bouncycastle.jar:/system/framework/apache-xml.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/telephony-common.jar:/system/framework/voip-common.jar:/system/framework/ims-common.jar:/system/framework/android.hidl.base-V1.0-java.jar:/system/framework/android.hidl.manager-V1.0-java.jar:/system/framework/framework-oahl-backward-compatibility.jar:/system/framework/android.test.base.jar', 'SYSTEMSERVERCLASSPATH': '/system/framework/services.jar:/system/framework/ethernet-service.jar:/system/framework/wifi-service.jar:/system/framework/com.android.location.provider.jar', 'ANDROID_SOCKET_zygote': '12', 'ANDROID_ENTRYPOINT': 'main.pyc', 'ANDROID_ARGUMENT': '/data/user/0/org.test.myapp/files/app', 'ANDROID_APP_PATH': '/data/user/0/org.test.myapp/files/app', 'ANDROID_PRIVATE': '/data/user/0/org.test.myapp/files', 'ANDROID_UNPACK': '/data/user/0/org.test.myapp/files/app', 'PYTHONHOME': '/data/user/0/org.test.myapp/files/app', 'PYTHONPATH': '/data/user/0/org.test.myapp/files/app:/data/user/0/org.test.myapp/files/app/lib', 'PYTHONOPTIMIZE': '2', 'P4A_BOOTSTRAP': 'SDL2', 'PYTHON_NAME': 'python', 'P4A_IS_WINDOWED': 'False', 'P4A_ORIENTATION': 'portrait', 'P4A_NUMERIC_VERSION': 'None', 'P4A_MINSDK': '21', 'LC_CTYPE': 'C.UTF-8'})
04-28 16:11:44.264 31825 31905 I python  : Android kivy bootstrap done. __name__ is __main__
04-28 16:11:44.264 31825 31905 I python  : AND: Ran string
04-28 16:11:44.264 31825 31905 I python  : Run user program, change dir and execute entrypoint
04-28 16:11:44.793 31825 31905 I python  : [WARNING] [Config      ] Older configuration version detected (0 instead of 21)
04-28 16:11:44.794 31825 31905 I python  : [WARNING] [Config      ] Upgrading configuration in progress.
04-28 16:11:44.820 31825 31905 I python  : [INFO   ] [Logger      ] Record log in /data/user/0/org.test.myapp/files/app/.kivy/logs/kivy_20-04-28_0.txt
04-28 16:11:44.821 31825 31905 I python  : [INFO   ] [Kivy        ] v1.11.1
04-28 16:11:44.821 31825 31905 I python  : [INFO   ] [Kivy        ] Installed at "/data/user/0/org.test.myapp/files/app/_python_bundle/site-packages/kivy/__init__.pyc"
04-28 16:11:44.822 31825 31905 I python  : [INFO   ] [Python      ] v3.8.1 (default, Apr 28 2020, 12:14:41) 
04-28 16:11:44.822 31825 31905 I python  : [Clang 8.0.2 (https://android.googlesource.com/toolchain/clang 40173bab62ec7462
04-28 16:11:44.822 31825 31905 I python  : [INFO   ] [Python      ] Interpreter at ""
04-28 16:11:44.824 31825 31905 I python  : [INFO   ] [KivyMD      ] v0.104.1
04-28 16:11:44.831 31825 31905 I python  : [INFO   ] [Factory     ] 184 symbols loaded
04-28 16:11:48.465 31825 31905 I python  : [INFO   ] [Image       ] Providers: img_tex, img_dds, img_sdl2, img_gif (img_pil, img_ffpyplayer ignored)
04-28 16:11:48.699 31825 31905 I python  : [INFO   ] [Window      ] Provider: sdl2
04-28 16:11:48.798 31825 31905 I python  : [INFO   ] [GL          ] Using the "OpenGL ES 2" graphics system
04-28 16:11:48.802 31825 31905 I python  : [INFO   ] [GL          ] Backend used <sdl2>
04-28 16:11:48.803 31825 31905 I python  : [INFO   ] [GL          ] OpenGL version <b'OpenGL ES 3.2 V@331.0 (GIT@98a7a73, I21281c58c8) (Date:12/18/18)'>
04-28 16:11:48.805 31825 31905 I python  : [INFO   ] [GL          ] OpenGL vendor <b'Qualcomm'>
04-28 16:11:48.806 31825 31905 I python  : [INFO   ] [GL          ] OpenGL renderer <b'Adreno (TM) 506'>
04-28 16:11:48.809 31825 31905 I python  : [INFO   ] [GL          ] OpenGL parsed version: 3, 2
04-28 16:11:48.811 31825 31905 I python  : [INFO   ] [GL          ] Texture max size <16384>
04-28 16:11:48.812 31825 31905 I python  : [INFO   ] [GL          ] Texture max units <16>
04-28 16:11:48.997 31825 31905 I python  : [INFO   ] [Window      ] auto add sdl2 input provider
04-28 16:11:49.000 31825 31905 I python  : [INFO   ] [Window      ] virtual keyboard not allowed, single mode, not docked
04-28 16:11:49.030 31825 31905 I python  : [INFO   ] [Text        ] Provider: sdl2
04-28 16:11:49.288 31825 31905 I python  : [INFO   ] [GL          ] NPOT texture support is available
04-28 16:11:51.806 31825 31905 I python  : [WARNING] [Base        ] Unknown <android> provider
04-28 16:11:51.807 31825 31905 I python  : [INFO   ] [Base        ] Start application main loop
04-28 16:11:52.259 31825 31905 I python  : [INFO   ] [Base        ] Leaving application in progress...
04-28 16:11:52.260 31825 31905 I python  :  Traceback (most recent call last):
04-28 16:11:52.260 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/app/main.py", line 377, in <module>
04-28 16:11:52.262 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/app.py", line 855, in run
04-28 16:11:52.263 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/base.py", line 504, in runTouchApp
04-28 16:11:52.265 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/core/window/window_sdl2.py", line 747, in mainloop
04-28 16:11:52.266 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/core/window/window_sdl2.py", line 479, in _mainloop
04-28 16:11:52.268 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/base.py", line 339, in idle
04-28 16:11:52.269 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/clock.py", line 591, in tick
04-28 16:11:52.270 31825 31905 I python  :    File "kivy/_clock.pyx", line 384, in kivy._clock.CyClockBase._process_events
04-28 16:11:52.271 31825 31905 I python  :    File "kivy/_clock.pyx", line 414, in kivy._clock.CyClockBase._process_events
04-28 16:11:52.272 31825 31905 I python  :    File "kivy/_clock.pyx", line 412, in kivy._clock.CyClockBase._process_events
04-28 16:11:52.273 31825 31905 I python  :    File "kivy/_clock.pyx", line 154, in kivy._clock.ClockEvent.tick
04-28 16:11:52.273 31825 31905 I python  :    File "kivy/_clock.pyx", line 86, in kivy._clock.ClockEvent.get_callback
04-28 16:11:52.274 31825 31905 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/weakmethod.py", line 56, in is_dead
04-28 16:11:52.276 31825 31905 I python  :  ReferenceError: weakly-referenced object no longer exists
04-28 16:11:52.276 31825 31905 I python  : Python for android ended.
04-28 16:13:18.332 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_ttf.so
04-28 16:13:18.333 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libhidapi.so
04-28 16:13:18.333 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libssl1.1.so
04-28 16:13:18.334 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libpython3.8m.so
04-28 16:13:18.335 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libffi.so
04-28 16:13:18.336 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libcrypto1.1.so
04-28 16:13:18.336 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_mixer.so
04-28 16:13:18.337 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libmain.so
04-28 16:13:18.337 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_image.so
04-28 16:13:18.338 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libsqlite3.so
04-28 16:13:18.338 32302 32302 V pythonutil: Pattern libsqlite3\.so matched file libsqlite3.so
04-28 16:13:18.339 32302 32302 V pythonutil: Checking pattern libsqlite3\.so against libSDL2.so
04-28 16:13:18.341 32302 32302 V pythonutil: Checking pattern libffi\.so against libSDL2_ttf.so
04-28 16:13:18.342 32302 32302 V pythonutil: Checking pattern libffi\.so against libhidapi.so
04-28 16:13:18.342 32302 32302 V pythonutil: Checking pattern libffi\.so against libssl1.1.so
04-28 16:13:18.343 32302 32302 V pythonutil: Checking pattern libffi\.so against libpython3.8m.so
04-28 16:13:18.343 32302 32302 V pythonutil: Checking pattern libffi\.so against libffi.so
04-28 16:13:18.343 32302 32302 V pythonutil: Pattern libffi\.so matched file libffi.so
04-28 16:13:18.345 32302 32302 V pythonutil: Checking pattern libffi\.so against libcrypto1.1.so
04-28 16:13:18.345 32302 32302 V pythonutil: Checking pattern libffi\.so against libSDL2_mixer.so
04-28 16:13:18.346 32302 32302 V pythonutil: Checking pattern libffi\.so against libmain.so
04-28 16:13:18.346 32302 32302 V pythonutil: Checking pattern libffi\.so against libSDL2_image.so
04-28 16:13:18.347 32302 32302 V pythonutil: Checking pattern libffi\.so against libsqlite3.so
04-28 16:13:18.347 32302 32302 V pythonutil: Checking pattern libffi\.so against libSDL2.so
04-28 16:13:18.350 32302 32302 V pythonutil: Checking pattern libpng16\.so against libSDL2_ttf.so
04-28 16:13:18.350 32302 32302 V pythonutil: Checking pattern libpng16\.so against libhidapi.so
04-28 16:13:18.351 32302 32302 V pythonutil: Checking pattern libpng16\.so against libssl1.1.so
04-28 16:13:18.352 32302 32302 V pythonutil: Checking pattern libpng16\.so against libpython3.8m.so
04-28 16:13:18.352 32302 32302 V pythonutil: Checking pattern libpng16\.so against libffi.so
04-28 16:13:18.353 32302 32302 V pythonutil: Checking pattern libpng16\.so against libcrypto1.1.so
04-28 16:13:18.354 32302 32302 V pythonutil: Checking pattern libpng16\.so against libSDL2_mixer.so
04-28 16:13:18.355 32302 32302 V pythonutil: Checking pattern libpng16\.so against libmain.so
04-28 16:13:18.355 32302 32302 V pythonutil: Checking pattern libpng16\.so against libSDL2_image.so
04-28 16:13:18.356 32302 32302 V pythonutil: Checking pattern libpng16\.so against libsqlite3.so
04-28 16:13:18.356 32302 32302 V pythonutil: Checking pattern libpng16\.so against libSDL2.so
04-28 16:13:18.359 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libSDL2_ttf.so
04-28 16:13:18.359 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libhidapi.so
04-28 16:13:18.360 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libssl1.1.so
04-28 16:13:18.360 32302 32302 V pythonutil: Pattern libssl.*\.so matched file libssl1.1.so
04-28 16:13:18.361 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libpython3.8m.so
04-28 16:13:18.361 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libffi.so
04-28 16:13:18.363 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libcrypto1.1.so
04-28 16:13:18.363 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libSDL2_mixer.so
04-28 16:13:18.364 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libmain.so
04-28 16:13:18.364 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libSDL2_image.so
04-28 16:13:18.365 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libsqlite3.so
04-28 16:13:18.365 32302 32302 V pythonutil: Checking pattern libssl.*\.so against libSDL2.so
04-28 16:13:18.367 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_ttf.so
04-28 16:13:18.368 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libhidapi.so
04-28 16:13:18.368 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libssl1.1.so
04-28 16:13:18.368 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libpython3.8m.so
04-28 16:13:18.369 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libffi.so
04-28 16:13:18.369 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libcrypto1.1.so
04-28 16:13:18.369 32302 32302 V pythonutil: Pattern libcrypto.*\.so matched file libcrypto1.1.so
04-28 16:13:18.370 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_mixer.so
04-28 16:13:18.370 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libmain.so
04-28 16:13:18.370 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_image.so
04-28 16:13:18.371 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libsqlite3.so
04-28 16:13:18.371 32302 32302 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2.so
04-28 16:13:18.372 32302 32302 V pythonutil: Loading library: sqlite3
04-28 16:13:18.378 32302 32302 V pythonutil: Loading library: ffi
04-28 16:13:18.380 32302 32302 V pythonutil: Loading library: SDL2
04-28 16:13:18.387 32302 32302 V pythonutil: Loading library: SDL2_image
04-28 16:13:18.390 32302 32302 V pythonutil: Loading library: SDL2_mixer
04-28 16:13:18.393 32302 32302 V pythonutil: Loading library: SDL2_ttf
04-28 16:13:18.396 32302 32302 V pythonutil: Loading library: ssl1.1
04-28 16:13:18.404 32302 32302 V pythonutil: Loading library: crypto1.1
04-28 16:13:18.406 32302 32302 V pythonutil: Loading library: python2.7
04-28 16:13:18.411 32302 32302 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython2.7.so"
04-28 16:13:18.412 32302 32302 V pythonutil: Loading library: python3.5m
04-28 16:13:18.414 32302 32302 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython3.5m.so"
04-28 16:13:18.414 32302 32302 V pythonutil: Loading library: python3.6m
04-28 16:13:18.417 32302 32302 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython3.6m.so"
04-28 16:13:18.417 32302 32302 V pythonutil: Loading library: python3.7m
04-28 16:13:18.419 32302 32302 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/lib/arm, /data/app/org.test.myapp-3RN20FoeGweUR7GeS0zdlg==/base.apk!/lib/armeabi-v7a, /system/lib]]] couldn't find "libpython3.7m.so"
04-28 16:13:18.419 32302 32302 V pythonutil: Loading library: python3.8m
04-28 16:13:18.428 32302 32302 V pythonutil: Loading library: main
04-28 16:13:18.432 32302 32302 V pythonutil: Failed to load _io.so or unicodedata.so...but that's okay.
04-28 16:13:18.434 32302 32302 V pythonutil: Unsatisfied linker when loading ctypes
04-28 16:13:18.434 32302 32302 V pythonutil: Loaded everything!
04-28 16:13:18.576 32302 32323 I python  : Initializing Python for Android
04-28 16:13:18.576 32302 32323 I python  : Setting additional env vars from p4a_env_vars.txt
04-28 16:13:18.577 32302 32323 I python  : Changing directory to the one provided by ANDROID_ARGUMENT
04-28 16:13:18.577 32302 32323 I python  : /data/user/0/org.test.myapp/files/app
04-28 16:13:18.577 32302 32323 I python  : Preparing to initialize python
04-28 16:13:18.577 32302 32323 I python  : _python_bundle dir exists
04-28 16:13:18.577 32302 32323 I python  : calculated paths to be...
04-28 16:13:18.577 32302 32323 I python  : /data/user/0/org.test.myapp/files/app/_python_bundle/stdlib.zip:/data/user/0/org.test.myapp/files/app/_python_bundle/modules
04-28 16:13:18.579 32302 32323 I python  : set wchar paths...
04-28 16:13:18.776 32302 32323 I python  : Initialized python
04-28 16:13:18.776 32302 32323 I python  : AND: Init threads
04-28 16:13:18.780 32302 32323 I python  : testing python print redirection
04-28 16:13:18.784 32302 32323 I python  : Android path ['.', '/data/user/0/org.test.myapp/files/app/_python_bundle/stdlib.zip', '/data/user/0/org.test.myapp/files/app/_python_bundle/modules', '/data/user/0/org.test.myapp/files/app/_python_bundle/site-packages']
04-28 16:13:18.785 32302 32323 I python  : os.environ is environ({'PATH': '/sbin:/system/sbin:/system/bin:/system/xbin:/odm/bin:/vendor/bin:/vendor/xbin', 'DOWNLOAD_CACHE': '/data/cache', 'ANDROID_BOOTLOGO': '1', 'ANDROID_ROOT': '/system', 'ANDROID_ASSETS': '/system/app', 'ANDROID_DATA': '/data', 'ANDROID_STORAGE': '/storage', 'EXTERNAL_STORAGE': '/sdcard', 'ASEC_MOUNTPOINT': '/mnt/asec', 'BOOTCLASSPATH': '/system/framework/qcom.fmradio.jar:/system/framework/QPerformance.jar:/system/framework/UxPerformance.jar:/system/framework/tcmiface.jar:/system/framework/telephony-ext.jar:/system/framework/core-oj.jar:/system/framework/core-libart.jar:/system/framework/conscrypt.jar:/system/framework/okhttp.jar:/system/framework/bouncycastle.jar:/system/framework/apache-xml.jar:/system/framework/ext.jar:/system/framework/framework.jar:/system/framework/telephony-common.jar:/system/framework/voip-common.jar:/system/framework/ims-common.jar:/system/framework/android.hidl.base-V1.0-java.jar:/system/framework/android.hidl.manager-V1.0-java.jar:/system/framework/framework-oahl-backward-compatibility.jar:/system/framework/android.test.base.jar', 'SYSTEMSERVERCLASSPATH': '/system/framework/services.jar:/system/framework/ethernet-service.jar:/system/framework/wifi-service.jar:/system/framework/com.android.location.provider.jar', 'ANDROID_SOCKET_zygote': '12', 'ANDROID_ENTRYPOINT': 'main.pyc', 'ANDROID_ARGUMENT': '/data/user/0/org.test.myapp/files/app', 'ANDROID_APP_PATH': '/data/user/0/org.test.myapp/files/app', 'ANDROID_PRIVATE': '/data/user/0/org.test.myapp/files', 'ANDROID_UNPACK': '/data/user/0/org.test.myapp/files/app', 'PYTHONHOME': '/data/user/0/org.test.myapp/files/app', 'PYTHONPATH': '/data/user/0/org.test.myapp/files/app:/data/user/0/org.test.myapp/files/app/lib', 'PYTHONOPTIMIZE': '2', 'P4A_BOOTSTRAP': 'SDL2', 'PYTHON_NAME': 'python', 'P4A_IS_WINDOWED': 'False', 'P4A_ORIENTATION': 'portrait', 'P4A_NUMERIC_VERSION': 'None', 'P4A_MINSDK': '21', 'LC_CTYPE': 'C.UTF-8'})
04-28 16:13:18.785 32302 32323 I python  : Android kivy bootstrap done. __name__ is __main__
04-28 16:13:18.785 32302 32323 I python  : AND: Ran string
04-28 16:13:18.785 32302 32323 I python  : Run user program, change dir and execute entrypoint
04-28 16:13:19.223 32302 32323 I python  : [INFO   ] [Logger      ] Record log in /data/user/0/org.test.myapp/files/app/.kivy/logs/kivy_20-04-28_1.txt
04-28 16:13:19.223 32302 32323 I python  : [INFO   ] [Kivy        ] v1.11.1
04-28 16:13:19.224 32302 32323 I python  : [INFO   ] [Kivy        ] Installed at "/data/user/0/org.test.myapp/files/app/_python_bundle/site-packages/kivy/__init__.pyc"
04-28 16:13:19.225 32302 32323 I python  : [INFO   ] [Python      ] v3.8.1 (default, Apr 28 2020, 12:14:41) 
04-28 16:13:19.225 32302 32323 I python  : [Clang 8.0.2 (https://android.googlesource.com/toolchain/clang 40173bab62ec7462
04-28 16:13:19.226 32302 32323 I python  : [INFO   ] [Python      ] Interpreter at ""
04-28 16:13:19.227 32302 32323 I python  : [INFO   ] [KivyMD      ] v0.104.1
04-28 16:13:19.239 32302 32323 I python  : [INFO   ] [Factory     ] 184 symbols loaded
04-28 16:13:23.457 32302 32323 I python  : [INFO   ] [Image       ] Providers: img_tex, img_dds, img_sdl2, img_gif (img_pil, img_ffpyplayer ignored)
04-28 16:13:23.723 32302 32323 I python  : [INFO   ] [Window      ] Provider: sdl2
04-28 16:13:23.791 32302 32323 I python  : [INFO   ] [GL          ] Using the "OpenGL ES 2" graphics system
04-28 16:13:23.795 32302 32323 I python  : [INFO   ] [GL          ] Backend used <sdl2>
04-28 16:13:23.796 32302 32323 I python  : [INFO   ] [GL          ] OpenGL version <b'OpenGL ES 3.2 V@331.0 (GIT@98a7a73, I21281c58c8) (Date:12/18/18)'>
04-28 16:13:23.796 32302 32323 I python  : [INFO   ] [GL          ] OpenGL vendor <b'Qualcomm'>
04-28 16:13:23.797 32302 32323 I python  : [INFO   ] [GL          ] OpenGL renderer <b'Adreno (TM) 506'>
04-28 16:13:23.798 32302 32323 I python  : [INFO   ] [GL          ] OpenGL parsed version: 3, 2
04-28 16:13:23.799 32302 32323 I python  : [INFO   ] [GL          ] Texture max size <16384>
04-28 16:13:23.800 32302 32323 I python  : [INFO   ] [GL          ] Texture max units <16>
04-28 16:13:23.854 32302 32323 I python  : [INFO   ] [Window      ] auto add sdl2 input provider
04-28 16:13:23.857 32302 32323 I python  : [INFO   ] [Window      ] virtual keyboard not allowed, single mode, not docked
04-28 16:13:23.902 32302 32323 I python  : [INFO   ] [Text        ] Provider: sdl2
04-28 16:13:24.166 32302 32323 I python  : [INFO   ] [GL          ] NPOT texture support is available
04-28 16:13:26.566 32302 32323 I python  : [WARNING] [Base        ] Unknown <android> provider
04-28 16:13:26.568 32302 32323 I python  : [INFO   ] [Base        ] Start application main loop
04-28 16:13:27.042 32302 32323 I python  : [INFO   ] [Base        ] Leaving application in progress...
04-28 16:13:27.043 32302 32323 I python  :  Traceback (most recent call last):
04-28 16:13:27.043 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/app/main.py", line 377, in <module>
04-28 16:13:27.045 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/app.py", line 855, in run
04-28 16:13:27.047 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/base.py", line 504, in runTouchApp
04-28 16:13:27.049 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/core/window/window_sdl2.py", line 747, in mainloop
04-28 16:13:27.050 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/core/window/window_sdl2.py", line 479, in _mainloop
04-28 16:13:27.052 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/base.py", line 339, in idle
04-28 16:13:27.053 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/clock.py", line 591, in tick
04-28 16:13:27.055 32302 32323 I python  :    File "kivy/_clock.pyx", line 384, in kivy._clock.CyClockBase._process_events
04-28 16:13:27.056 32302 32323 I python  :    File "kivy/_clock.pyx", line 414, in kivy._clock.CyClockBase._process_events
04-28 16:13:27.058 32302 32323 I python  :    File "kivy/_clock.pyx", line 412, in kivy._clock.CyClockBase._process_events
04-28 16:13:27.059 32302 32323 I python  :    File "kivy/_clock.pyx", line 154, in kivy._clock.ClockEvent.tick
04-28 16:13:27.060 32302 32323 I python  :    File "kivy/_clock.pyx", line 86, in kivy._clock.ClockEvent.get_callback
04-28 16:13:27.061 32302 32323 I python  :    File "/Users/felipe/Documents/MyProject/TEST/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/myapp/kivy/weakmethod.py", line 56, in is_dead
04-28 16:13:27.063 32302 32323 I python  :  ReferenceError: weakly-referenced object no longer exists
04-28 16:13:27.063 32302 32323 I python  : Python for android ended.
HeaTTheatR commented 4 years ago

@Felipe738743872 I can not reproduce this error.

ezgif-4-4bc24097eb0f

Felipe738743872 commented 4 years ago

Strange, Maybe it's my buildozer, I'll check

HeaTTheatR commented 4 years ago

@Charanpreet123 See how to ask questions for answers!

Charanpreet-Singh-AI commented 4 years ago

Strange, Maybe it's my buildozer, I'll check @Felipe738743872 how can uh solve this error , will you please tell me the correct way , thanks

Charanpreet-Singh-AI commented 4 years ago

@HeaTTheatR My code is private , i have confidential data in my code , i was unable to add my code in the error report .i hope you understand