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.2k stars 661 forks source link

ReferenceError: weakly-referenced object no longer exists #551

Closed Rickyc81 closed 3 years ago

Rickyc81 commented 3 years ago

Description of the Bug

The problem occurs when debugging the app on android, on linux it works perfectly. Occurs when I try to insert a PNG image to a list object

i read this on debug

09-27 19:23:41.462  2360  2433 I python  :  Traceback (most recent call last):
09-27 19:23:41.462  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/app/main.py", line 38, in <module>
09-27 19:23:41.463  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/app.py", line 855, in run
09-27 19:23:41.464  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/base.py", line 504, in runTouchApp
09-27 19:23:41.464  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/core/window/window_sdl2.py", line 747, in mainloop
09-27 19:23:41.465  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/core/window/window_sdl2.py", line 479, in _mainloop
09-27 19:23:41.466  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/base.py", line 339, in idle
09-27 19:23:41.467  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/clock.py", line 591, in tick
09-27 19:23:41.468  2360  2433 I python  :    File "kivy/_clock.pyx", line 384, in kivy._clock.CyClockBase._process_events
09-27 19:23:41.468  2360  2433 I python  :    File "kivy/_clock.pyx", line 414, in kivy._clock.CyClockBase._process_events
09-27 19:23:41.469  2360  2433 I python  :    File "kivy/_clock.pyx", line 412, in kivy._clock.CyClockBase._process_events
09-27 19:23:41.470  2360  2433 I python  :    File "kivy/_clock.pyx", line 154, in kivy._clock.ClockEvent.tick
09-27 19:23:41.470  2360  2433 I python  :    File "kivy/_clock.pyx", line 86, in kivy._clock.ClockEvent.get_callback
09-27 19:23:41.471  2360  2433 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/weakmethod.py", line 56, in is_dead
09-27 19:23:41.472  2360  2433 I python  :  ReferenceError: weakly-referenced object no longer exists
09-27 19:23:41.472  2360  2433 I python  : Python for android ended.

Code and Logs

from kivy.app import App
from kivy.lang import Builder

kv = """
NavigationLayout:

    ScreenManager:

        Screen:

            BoxLayout:
                orientation: 'vertical'

                MDToolbar:
                    title: "Stazione Meteo"
                    elevation: 5
                    left_action_items: [["menu", lambda x: nav_drawer.set_state("open")]]

                ScrollView:

                    MDList:
                        id: container

    MDNavigationDrawer:
        id: nav_drawer

        BoxLayout:
            orientation: "vertical"
            padding: "8dp"
            spacing: "8dp"

            AnchorLayout:
                anchor_x: "left"
                size_hint_y: None
                height: avatar.height

                Image:
                    id: avatar
                    size_hint: None, None
                    size: "100dp", "100dp"
                    source: "circle-cropped_logo.png"

            MDLabel:
                text: "WeatherStation Pro 1.0.0"
                font_style: "Button"
                size_hint_y: None

            MDLabel:
                text: "riccardo.cosenza@gmail.com"
                font_style: "Caption"
                size_hint_y: None

            ScrollView:

                MDList:

                    OneLineAvatarListItem:
                        text: "Informazioni"
                        on_press: app.showInfoDialog()

                        IconLeftWidget:
                            icon: "information-outline"

                    OneLineAvatarListItem:
                        text: "Contattaci"
                        on_press: app.showcontactDialog()

                        IconLeftWidget:
                            icon: "contact-mail-outline"

"""
from kivy.lang import Builder
from kivy.uix.boxlayout import BoxLayout
from kivymd.app import MDApp
from kivymd.uix.dialog import MDDialog
from kivymd.uix.list import OneLineListItem, TwoLineAvatarListItem, ThreeLineAvatarListItem, OneLineIconListItem, TwoLineIconListItem
from kivymd.uix.list import ImageLeftWidget, IconLeftWidget

class weatherStation(MDApp):

    contactDialog = None
    infoDialog = None

    def build(self):
        self.title = "WeatherStation"
        self.theme_cls.primary_palette = "Teal"
        self.theme_cls.primary_hue = "400"

        return Builder.load_file("weatherstation.kv")

    def on_start(self):
        for i in range(20):
            icons = ImageLeftWidget(source="dew.png")
            mdlist = self.root.ids.container
            line = TwoLineAvatarListItem(
                    text=f"Single-line item {i}",
                    font_style = "H6",
                    secondary_text= "Secondary text here",
                    )
            line.add_widget(icons)
            mdlist.add_widget(line)

    def showInfoDialog(self):
        if not self.infoDialog:
            self.infoDialog = MDDialog(
                title = "Informazioni APP",
                text = "Made with KivyMD @2020",
                auto_dismiss = True
            )
        self.infoDialog.open()

    def showcontactDialog(self):
        if not self.contactDialog:
            self.contactDialog = MDDialog(
                title = "I nostri contatti",
                text = "riccardo.cosenza81@gmail.com",
                auto_dismiss = True
            )
        self.contactDialog.open()

if __name__ == '__main__':
    weatherStation().run()

Versions

HeaTTheatR commented 3 years ago

@Rickyc81 Show full log.

Rickyc81 commented 3 years ago
09-27 19:42:21.065  3654  3729 D StrictMode:    at nem.a(PG:244)
09-27 19:42:21.065  3654  3729 D StrictMode:    at neo.a(Unknown Source:30)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bfmw.a(Unknown Source:2)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bfmx.run(PG:9)
09-27 19:42:21.065  3654  3729 D StrictMode:    at baod.run(PG:1)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bamq.run(Unknown Source:24)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.lang.Thread.run(Thread.java:919)
09-27 19:42:21.065  3654  3729 D StrictMode: StrictMode policy violation: android.os.strictmode.DiskReadViolation
09-27 19:42:21.065  3654  3729 D StrictMode:    at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1556)
09-27 19:42:21.065  3654  3729 D StrictMode:    at libcore.io.BlockGuardOs.read(BlockGuardOs.java:302)
09-27 19:42:21.065  3654  3729 D StrictMode:    at libcore.io.ForwardingOs.read(ForwardingOs.java:177)
09-27 19:42:21.065  3654  3729 D StrictMode:    at libcore.io.IoBridge.read(IoBridge.java:513)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:313)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:282)
09-27 19:42:21.065  3654  3729 D StrictMode:    at pxk.a(PG:11)
09-27 19:42:21.065  3654  3729 D StrictMode:    at qtg.a(PG:99)
09-27 19:42:21.065  3654  3729 D StrictMode:    at qtg.a(PG:20)
09-27 19:42:21.065  3654  3729 D StrictMode:    at pxm.a(PG:10)
09-27 19:42:21.065  3654  3729 D StrictMode:    at nem.a(PG:110)
09-27 19:42:21.065  3654  3729 D StrictMode:    at nem.a(PG:244)
09-27 19:42:21.065  3654  3729 D StrictMode:    at neo.a(Unknown Source:30)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bfmw.a(Unknown Source:2)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bfmx.run(PG:9)
09-27 19:42:21.065  3654  3729 D StrictMode:    at baod.run(PG:1)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bamq.run(Unknown Source:24)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.lang.Thread.run(Thread.java:919)
09-27 19:42:21.065  3654  3729 D StrictMode: StrictMode policy violation: android.os.strictmode.DiskReadViolation
09-27 19:42:21.065  3654  3729 D StrictMode:    at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1556)
09-27 19:42:21.065  3654  3729 D StrictMode:    at libcore.io.BlockGuardOs.read(BlockGuardOs.java:302)
09-27 19:42:21.065  3654  3729 D StrictMode:    at libcore.io.ForwardingOs.read(ForwardingOs.java:177)
09-27 19:42:21.065  3654  3729 D StrictMode:    at libcore.io.IoBridge.read(IoBridge.java:513)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:313)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:282)
09-27 19:42:21.065  3654  3729 D StrictMode:    at pxk.a(PG:11)
09-27 19:42:21.065  3654  3729 D StrictMode:    at qtg.a(PG:99)
09-27 19:42:21.065  3654  3729 D StrictMode:    at qtg.a(PG:20)
09-27 19:42:21.065  3654  3729 D StrictMode:    at pxm.a(PG:10)
09-27 19:42:21.065  3654  3729 D StrictMode:    at nem.a(PG:110)
09-27 19:42:21.065  3654  3729 D StrictMode:    at nem.a(PG:244)
09-27 19:42:21.065  3654  3729 D StrictMode:    at neo.a(Unknown Source:30)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bfmw.a(Unknown Source:2)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bfmx.run(PG:9)
09-27 19:42:21.065  3654  3729 D StrictMode:    at baod.run(PG:1)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
09-27 19:42:21.065  3654  3729 D StrictMode:    at bamq.run(Unknown Source:24)
09-27 19:42:21.065  3654  3729 D StrictMode:    at java.lang.Thread.run(Thread.java:919)
09-27 19:42:21.212  3654  3729 D StrictMode: StrictMode policy violation: android.os.strictmode.DiskReadViolation
09-27 19:42:21.212  3654  3729 D StrictMode:    at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1556)
09-27 19:42:21.212  3654  3729 D StrictMode:    at libcore.io.BlockGuardOs.open(BlockGuardOs.java:247)
09-27 19:42:21.212  3654  3729 D StrictMode:    at libcore.io.ForwardingOs.open(ForwardingOs.java:167)
09-27 19:42:21.212  3654  3729 D StrictMode:    at android.app.ActivityThread$AndroidOs.open(ActivityThread.java:7255)
09-27 19:42:21.212  3654  3729 D StrictMode:    at libcore.io.IoBridge.open(IoBridge.java:482)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.io.FileInputStream.<init>(FileInputStream.java:159)
09-27 19:42:21.212  3654  3729 D StrictMode:    at pxk.a(PG:9)
09-27 19:42:21.212  3654  3729 D StrictMode:    at qtg.a(PG:99)
09-27 19:42:21.212  3654  3729 D StrictMode:    at qtg.a(PG:20)
09-27 19:42:21.212  3654  3729 D StrictMode:    at pxm.a(PG:10)
09-27 19:42:21.212  3654  3729 D StrictMode:    at nem.a(PG:110)
09-27 19:42:21.212  3654  3729 D StrictMode:    at nem.a(PG:244)
09-27 19:42:21.212  3654  3729 D StrictMode:    at neo.a(Unknown Source:30)
09-27 19:42:21.212  3654  3729 D StrictMode:    at bfmw.a(Unknown Source:2)
09-27 19:42:21.212  3654  3729 D StrictMode:    at bfmx.run(PG:9)
09-27 19:42:21.212  3654  3729 D StrictMode:    at baod.run(PG:1)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
09-27 19:42:21.212  3654  3729 D StrictMode:    at bamq.run(Unknown Source:24)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.lang.Thread.run(Thread.java:919)
09-27 19:42:21.212  3654  3729 D StrictMode: StrictMode policy violation: android.os.strictmode.DiskReadViolation
09-27 19:42:21.212  3654  3729 D StrictMode:    at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1556)
09-27 19:42:21.212  3654  3729 D StrictMode:    at libcore.io.BlockGuardOs.fstat(BlockGuardOs.java:172)
09-27 19:42:21.212  3654  3729 D StrictMode:    at libcore.io.ForwardingOs.fstat(ForwardingOs.java:108)
09-27 19:42:21.212  3654  3729 D StrictMode:    at libcore.io.IoBridge.open(IoBridge.java:485)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.io.FileInputStream.<init>(FileInputStream.java:159)
09-27 19:42:21.212  3654  3729 D StrictMode:    at pxk.a(PG:9)
09-27 19:42:21.212  3654  3729 D StrictMode:    at qtg.a(PG:99)
09-27 19:42:21.212  3654  3729 D StrictMode:    at qtg.a(PG:20)
09-27 19:42:21.212  3654  3729 D StrictMode:    at pxm.a(PG:10)
09-27 19:42:21.212  3654  3729 D StrictMode:    at nem.a(PG:110)
09-27 19:42:21.212  3654  3729 D StrictMode:    at nem.a(PG:244)
09-27 19:42:21.212  3654  3729 D StrictMode:    at neo.a(Unknown Source:30)
09-27 19:42:21.212  3654  3729 D StrictMode:    at bfmw.a(Unknown Source:2)
09-27 19:42:21.212  3654  3729 D StrictMode:    at bfmx.run(PG:9)
09-27 19:42:21.212  3654  3729 D StrictMode:    at baod.run(PG:1)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
09-27 19:42:21.212  3654  3729 D StrictMode:    at bamq.run(Unknown Source:24)
09-27 19:42:21.212  3654  3729 D StrictMode:    at java.lang.Thread.run(Thread.java:919)
09-27 19:42:21.213  3654  3729 D StrictMode: StrictMode policy violation: android.os.strictmode.DiskReadViolation
09-27 19:42:21.213  3654  3729 D StrictMode:    at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1556)
09-27 19:42:21.213  3654  3729 D StrictMode:    at libcore.io.BlockGuardOs.read(BlockGuardOs.java:302)
09-27 19:42:21.213  3654  3729 D StrictMode:    at libcore.io.ForwardingOs.read(ForwardingOs.java:177)
09-27 19:42:21.213  3654  3729 D StrictMode:    at libcore.io.IoBridge.read(IoBridge.java:513)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:313)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:282)
09-27 19:42:21.213  3654  3729 D StrictMode:    at pxk.a(PG:11)
09-27 19:42:21.213  3654  3729 D StrictMode:    at qtg.a(PG:99)
09-27 19:42:21.213  3654  3729 D StrictMode:    at qtg.a(PG:20)
09-27 19:42:21.213  3654  3729 D StrictMode:    at pxm.a(PG:10)
09-27 19:42:21.213  3654  3729 D StrictMode:    at nem.a(PG:110)
09-27 19:42:21.213  3654  3729 D StrictMode:    at nem.a(PG:244)
09-27 19:42:21.213  3654  3729 D StrictMode:    at neo.a(Unknown Source:30)
09-27 19:42:21.213  3654  3729 D StrictMode:    at bfmw.a(Unknown Source:2)
09-27 19:42:21.213  3654  3729 D StrictMode:    at bfmx.run(PG:9)
09-27 19:42:21.213  3654  3729 D StrictMode:    at baod.run(PG:1)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
09-27 19:42:21.213  3654  3729 D StrictMode:    at bamq.run(Unknown Source:24)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.lang.Thread.run(Thread.java:919)
09-27 19:42:21.213  3654  3729 D StrictMode: StrictMode policy violation: android.os.strictmode.DiskReadViolation
09-27 19:42:21.213  3654  3729 D StrictMode:    at android.os.StrictMode$AndroidBlockGuardPolicy.onReadFromDisk(StrictMode.java:1556)
09-27 19:42:21.213  3654  3729 D StrictMode:    at libcore.io.BlockGuardOs.read(BlockGuardOs.java:302)
09-27 19:42:21.213  3654  3729 D StrictMode:    at libcore.io.ForwardingOs.read(ForwardingOs.java:177)
09-27 19:42:21.213  3654  3729 D StrictMode:    at libcore.io.IoBridge.read(IoBridge.java:513)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:313)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.io.FileInputStream.read(FileInputStream.java:282)
09-27 19:42:21.213  3654  3729 D StrictMode:    at pxk.a(PG:11)
09-27 19:42:21.213  3654  3729 D StrictMode:    at qtg.a(PG:99)
09-27 19:42:21.213  3654  3729 D StrictMode:    at qtg.a(PG:20)
09-27 19:42:21.213  3654  3729 D StrictMode:    at pxm.a(PG:10)
09-27 19:42:21.213  3654  3729 D StrictMode:    at nem.a(PG:110)
09-27 19:42:21.213  3654  3729 D StrictMode:    at nem.a(PG:244)
09-27 19:42:21.213  3654  3729 D StrictMode:    at neo.a(Unknown Source:30)
09-27 19:42:21.213  3654  3729 D StrictMode:    at bfmw.a(Unknown Source:2)
09-27 19:42:21.213  3654  3729 D StrictMode:    at bfmx.run(PG:9)
09-27 19:42:21.213  3654  3729 D StrictMode:    at baod.run(PG:1)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
09-27 19:42:21.213  3654  3729 D StrictMode:    at bamq.run(Unknown Source:24)
09-27 19:42:21.213  3654  3729 D StrictMode:    at java.lang.Thread.run(Thread.java:919)
09-27 19:42:23.661   692   706 I system_server: Background young concurrent copying GC freed 490811(19MB) AllocSpace objects, 58(3256KB) LOS objects, 50% free, 22MB/45MB, paused 634us total 163.529ms
09-27 19:42:24.368  3654  3654 W aper    : Already started: aper@f97e6bf
09-27 19:42:25.302   449   449 W wificond: Copy constructor is only used for unit tests
09-27 19:42:25.304   449   449 W wificond: Failed to get NL80211_ATTR_EXT_FEATURES
09-27 19:42:25.308   449   449 W wificond: Copy constructor is only used for unit tests
09-27 19:42:25.314   449   449 W wificond: Failed to get NL80211_ATTR_EXT_FEATURES
09-27 19:42:25.316   449   449 W wificond: Copy constructor is only used for unit tests
09-27 19:42:25.317   449   449 W wificond: Failed to get NL80211_ATTR_EXT_FEATURES
09-27 19:42:25.374   275   275 D Zygote  : Forked child process 4113
09-27 19:42:25.377   692   749 I ActivityManager: Start proc 4113:com.whatsapp/u0a99 for service {com.whatsapp/com.whatsapp.contact.sync.ContactsSyncAdapterService}
09-27 19:42:25.373  4113  4113 W main    : type=1400 audit(0.0:1730): avc: denied { write } for name="tasks" dev="tmpfs" ino=8527 scontext=u:r:zygote:s0 tcontext=u:object_r:device:s0 tclass=file permissive=0
09-27 19:42:25.471  4113  4113 I MultiDex: VM with version 2.1.0 has multidex support
09-27 19:42:25.471  4113  4113 I MultiDex: Installing application
09-27 19:42:25.471  4113  4113 I MultiDex: VM has multidex support, MultiDex support library is disabled.
09-27 19:42:25.521  4113  4113 D SoLoader: init start
09-27 19:42:25.521  4113  4113 D SoLoader: adding system library source: /vendor/lib
09-27 19:42:25.521  4113  4113 D SoLoader: adding system library source: /system/lib
09-27 19:42:25.522  4113  4113 W SoLoader: context.getApplicationContext returned null, holding reference to original context.
09-27 19:42:25.522  4113  4113 D SoLoader: adding application source: X.03G[root = /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm flags = 0]
09-27 19:42:25.522  4113  4113 D SoLoader: adding backup source from : X.03L[root = /data/data/com.whatsapp/lib-main flags = 1]
09-27 19:42:25.522  4113  4113 D SoLoader: Preparing SO source: X.03G[root = /system/lib flags = 2]
09-27 19:42:25.522  4113  4113 D SoLoader: Preparing SO source: X.03G[root = /system/vendor/lib flags = 2]
09-27 19:42:25.522  4113  4113 D SoLoader: Preparing SO source: X.03G[root = /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm flags = 0]
09-27 19:42:25.524  4113  4113 D SoLoader: Preparing SO source: X.03L[root = /data/data/com.whatsapp/lib-main flags = 1]
09-27 19:42:25.524  4113  4113 V fb-UnpackingSoSource: locked dso store /data/user/0/com.whatsapp/lib-main
09-27 19:42:25.529  4113  4113 I fb-UnpackingSoSource: dso store is up-to-date: /data/user/0/com.whatsapp/lib-main
09-27 19:42:25.529  4113  4113 V fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.whatsapp/lib-main
09-27 19:42:25.529  4113  4113 D SoLoader: init finish: 4 SO sources prepared
09-27 19:42:25.529  4113  4113 D SoLoader: init exiting
09-27 19:42:25.529  4113  4113 D SoLoader: Prepending to SO sources: X.03G[root = /data/data/com.whatsapp/files/decompressed/libs.spk.zst flags = 1]
09-27 19:42:25.530  4113  4113 D SoLoader: Prepended to SO sources: X.03G[root = /data/data/com.whatsapp/files/decompressed/libs.spk.zst flags = 1]
09-27 19:42:25.532  4113  4113 D SoLoader: About to load: libvlc.so
09-27 19:42:25.532  4113  4113 D SoLoader: libvlc.so found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.540  4113  4113 D SoLoader: Loading lib dependencies: [liblog.so, libm.so, libc++_shared.so, libdl.so, libc.so]
09-27 19:42:25.540  4113  4113 D SoLoader: About to load: liblog.so
09-27 19:42:25.541  4113  4113 D SoLoader: liblog.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.541  4113  4113 D SoLoader: liblog.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.541  4113  4113 D SoLoader: liblog.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.541  4113  4113 D SoLoader: liblog.so not found on /system/vendor/lib
09-27 19:42:25.541  4113  4113 D SoLoader: liblog.so found on /system/lib
09-27 19:42:25.541  4113  4113 D SoLoader: liblog.so loaded implicitly
09-27 19:42:25.541  4113  4113 D SoLoader: Loaded: liblog.so
09-27 19:42:25.541  4113  4113 D SoLoader: About to load: libm.so
09-27 19:42:25.542  4113  4113 D SoLoader: libm.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.542  4113  4113 D SoLoader: libm.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.542  4113  4113 D SoLoader: libm.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.542  4113  4113 D SoLoader: libm.so not found on /system/vendor/lib
09-27 19:42:25.542  4113  4113 D SoLoader: libm.so found on /system/lib
09-27 19:42:25.542  4113  4113 D SoLoader: libm.so loaded implicitly
09-27 19:42:25.542  4113  4113 D SoLoader: Loaded: libm.so
09-27 19:42:25.542  4113  4113 D SoLoader: About to load: libc++_shared.so
09-27 19:42:25.545  4113  4113 D SoLoader: libc++_shared.so found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.550  4113  4113 D SoLoader: Loading lib dependencies: [libc.so, libdl.so]
09-27 19:42:25.550  4113  4113 D SoLoader: About to load: libc.so
09-27 19:42:25.550  4113  4113 D SoLoader: libc.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.551  4113  4113 D SoLoader: libc.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.551  4113  4113 D SoLoader: libc.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.551  4113  4113 D SoLoader: libc.so not found on /system/vendor/lib
09-27 19:42:25.551  4113  4113 D SoLoader: libc.so found on /system/lib
09-27 19:42:25.551  4113  4113 D SoLoader: libc.so loaded implicitly
09-27 19:42:25.551  4113  4113 D SoLoader: Loaded: libc.so
09-27 19:42:25.551  4113  4113 D SoLoader: About to load: libdl.so
09-27 19:42:25.551  4113  4113 D SoLoader: libdl.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.552  4113  4113 D SoLoader: libdl.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.552  4113  4113 D SoLoader: libdl.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.552  4113  4113 D SoLoader: libdl.so not found on /system/vendor/lib
09-27 19:42:25.552  4113  4113 D SoLoader: libdl.so found on /system/lib
09-27 19:42:25.552  4113  4113 D SoLoader: libdl.so loaded implicitly
09-27 19:42:25.552  4113  4113 D SoLoader: Loaded: libdl.so
09-27 19:42:25.550  4113  4113 W com.whatsapp: type=1400 audit(0.0:1731): avc: granted { execute } for path="/data/data/com.whatsapp/files/decompressed/libs.spk.zst/libc++_shared.so" dev="mmcblk0p28" ino=222621 scontext=u:r:untrusted_app:s0:c99,c256,c512,c768 tcontext=u:object_r:app_data_file:s0:c99,c256,c512,c768 tclass=file app=com.whatsapp
09-27 19:42:25.559  4113  4113 D SoLoader: Loaded: libc++_shared.so
09-27 19:42:25.557  4113  4113 W com.whatsapp: type=1400 audit(0.0:1732): avc: granted { execute } for path="/data/data/com.whatsapp/files/decompressed/libs.spk.zst/libvlc.so" dev="mmcblk0p28" ino=222616 scontext=u:r:untrusted_app:s0:c99,c256,c512,c768 tcontext=u:object_r:app_data_file:s0:c99,c256,c512,c768 tclass=file app=com.whatsapp
09-27 19:42:25.560  4113  4113 D SoLoader: Loaded: libvlc.so
09-27 19:42:25.561  4113  4113 D SoLoader: About to load: libwhatsapp.so
09-27 19:42:25.561  4113  4113 D SoLoader: libwhatsapp.so found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.569  4113  4113 D SoLoader: Loading lib dependencies: [libz.so, libGLESv2.so, libandroid.so, libjnigraphics.so, libvlc.so, libdl.so, libOpenSLES.so, liblog.so, libm.so, libc++_shared.so, libc.so]
09-27 19:42:25.569  4113  4113 D SoLoader: About to load: libz.so
09-27 19:42:25.569  4113  4113 D SoLoader: libz.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.570  4113  4113 D SoLoader: libz.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.570  4113  4113 D SoLoader: libz.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.570  4113  4113 D SoLoader: libz.so not found on /system/vendor/lib
09-27 19:42:25.570  4113  4113 D SoLoader: libz.so found on /system/lib
09-27 19:42:25.570  4113  4113 D SoLoader: libz.so loaded implicitly
09-27 19:42:25.570  4113  4113 D SoLoader: Loaded: libz.so
09-27 19:42:25.570  4113  4113 D SoLoader: About to load: libGLESv2.so
09-27 19:42:25.570  4113  4113 D SoLoader: libGLESv2.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.571  4113  4113 D SoLoader: libGLESv2.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.571  4113  4113 D SoLoader: libGLESv2.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.571  4113  4113 D SoLoader: libGLESv2.so not found on /system/vendor/lib
09-27 19:42:25.571  4113  4113 D SoLoader: libGLESv2.so found on /system/lib
09-27 19:42:25.571  4113  4113 D SoLoader: libGLESv2.so loaded implicitly
09-27 19:42:25.571  4113  4113 D SoLoader: Loaded: libGLESv2.so
09-27 19:42:25.571  4113  4113 D SoLoader: About to load: libandroid.so
09-27 19:42:25.571  4113  4113 D SoLoader: libandroid.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.571  4113  4113 D SoLoader: libandroid.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.572  4113  4113 D SoLoader: libandroid.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.572  4113  4113 D SoLoader: libandroid.so not found on /system/vendor/lib
09-27 19:42:25.572  4113  4113 D SoLoader: libandroid.so found on /system/lib
09-27 19:42:25.572  4113  4113 D SoLoader: libandroid.so loaded implicitly
09-27 19:42:25.572  4113  4113 D SoLoader: Loaded: libandroid.so
09-27 19:42:25.572  4113  4113 D SoLoader: About to load: libjnigraphics.so
09-27 19:42:25.572  4113  4113 D SoLoader: libjnigraphics.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.573  4113  4113 D SoLoader: libjnigraphics.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.573  4113  4113 D SoLoader: libjnigraphics.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.574  4113  4113 D SoLoader: libjnigraphics.so not found on /system/vendor/lib
09-27 19:42:25.574  4113  4113 D SoLoader: libjnigraphics.so found on /system/lib
09-27 19:42:25.574  4113  4113 D SoLoader: libjnigraphics.so loaded implicitly
09-27 19:42:25.574  4113  4113 D SoLoader: Loaded: libjnigraphics.so
09-27 19:42:25.574  4113  4113 D SoLoader: About to load: libOpenSLES.so
09-27 19:42:25.575  4113  4113 D SoLoader: libOpenSLES.so not found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.575  4113  4113 D SoLoader: libOpenSLES.so not found on /data/data/com.whatsapp/lib-main
09-27 19:42:25.573  4113  4113 W com.whatsapp: type=1400 audit(0.0:1733): avc: granted { execute } for path="/data/data/com.whatsapp/files/decompressed/libs.spk.zst/libwhatsapp.so" dev="mmcblk0p28" ino=222617 scontext=u:r:untrusted_app:s0:c99,c256,c512,c768 tcontext=u:object_r:app_data_file:s0:c99,c256,c512,c768 tclass=file app=com.whatsapp
09-27 19:42:25.576  4113  4113 D SoLoader: libOpenSLES.so not found on /data/app/com.whatsapp-axZ9w7wNKB1XTyF_VMG_vA==/lib/arm
09-27 19:42:25.576  4113  4113 D SoLoader: libOpenSLES.so not found on /system/vendor/lib
09-27 19:42:25.576  4113  4113 D SoLoader: libOpenSLES.so found on /system/lib
09-27 19:42:25.576  4113  4113 D SoLoader: libOpenSLES.so loaded implicitly
09-27 19:42:25.576  4113  4113 D SoLoader: Loaded: libOpenSLES.so
09-27 19:42:25.588  4113  4113 D SigquitBasedANRDetector: Registered
09-27 19:42:25.588  4113  4113 D SoLoader: Loaded: libwhatsapp.so
09-27 19:42:25.588  4113  4113 D SoLoader: About to load: libcurve25519.so
09-27 19:42:25.589  4113  4113 D SoLoader: libcurve25519.so found on /data/data/com.whatsapp/files/decompressed/libs.spk.zst
09-27 19:42:25.592  4113  4113 D SoLoader: Loading lib dependencies: [libm.so, libdl.so, libc.so]
09-27 19:42:25.594  4113  4113 D SoLoader: Loaded: libcurve25519.so
09-27 19:42:25.590  4113  4113 W com.whatsapp: type=1400 audit(0.0:1734): avc: granted { execute } for path="/data/data/com.whatsapp/files/decompressed/libs.spk.zst/libcurve25519.so" dev="mmcblk0p28" ino=222618 scontext=u:r:untrusted_app:s0:c99,c256,c512,c768 tcontext=u:object_r:app_data_file:s0:c99,c256,c512,c768 tclass=file app=com.whatsapp
09-27 19:42:25.628  4113  4113 D FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
09-27 19:42:25.628  4113  4113 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
09-27 19:42:25.629  4113  4113 D FirebaseApp: com.google.android.gms.measurement.AppMeasurement is not linked. Skipping initialization.
09-27 19:42:25.629  4113  4113 I FirebaseInitProvider: FirebaseApp initialization successful
09-27 19:42:25.735  4113  4151 D NetworkSecurityConfig: Using Network Security Config from resource network_security_config debugBuild: false
09-27 19:42:25.877   692  3832 W ActivityManager: Permission Denial: opening provider com.android.providers.contacts.ContactsProvider2 from ProcessRecord{4d74b6f 4113:com.whatsapp/u0a99} (pid=4113, uid=10099) requires android.permission.READ_CONTACTS or android.permission.WRITE_CONTACTS
09-27 19:42:25.892   692  2229 W SyncManager: failed sync operation JobId=108465 ***/com.whatsapp u0 [com.android.contacts] PERIODIC Reason=Periodic (period=1h00m00s flex=2m24s), SyncResult: databaseError: true stats []
09-27 19:42:25.910   692   710 D ConnectivityService: requestNetwork for uid/pid:10099/4113 NetworkRequest [ TRACK_DEFAULT id=132, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10099] ]
09-27 19:42:25.911   692  2173 D WifiNetworkFactory: got request NetworkRequest [ TRACK_DEFAULT id=132, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10099] ] with score 60 and serial -1
09-27 19:42:25.912   692  2173 D UntrustedWifiNetworkFactory: got request NetworkRequest [ TRACK_DEFAULT id=132, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10099] ] with score 60 and serial -1
09-27 19:42:25.912   692  2238 D Ethernet: got request NetworkRequest [ TRACK_DEFAULT id=132, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10099] ] with score 60 and serial -1
09-27 19:42:25.912  2513  2513 D PhoneSwitcherNetworkRequstListener: got request NetworkRequest [ TRACK_DEFAULT id=132, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED Uid: 10099] ] with score 60 and serial -1
09-27 19:42:25.914  2274  2274 V KeyguardUpdateMonitor: onSubscriptionInfoChanged()
09-27 19:42:25.917  2274  2274 V KeyguardUpdateMonitor: SubInfo:{id=1, iccId=8939104170045823025 simSlotIndex=0 carrierId=29 displayName=Vodafone carrierName=vodafone IT nameSource=0 iconTint=-16746133 mNumber= dataRoaming=0 iconBitmap=android.graphics.Bitmap@d3832bd mcc 222 mnc 10mCountryIso=it isEmbedded false nativeAccessRules null cardString=8939104170045823025 cardId=-1 isOpportunistic false mGroupUUID=null mIsGroupDisabled=false profileClass=-1 ehplmns = [] hplmns = [22210] subscriptionType=0 mGroupOwner=null carrierConfigAccessRules=null}
09-27 19:42:25.922  4113  4182 D WM-PackageManagerHelper: androidx.work.impl.background.systemjob.SystemJobService enabled
09-27 19:42:25.922  4113  4182 D WM-Schedulers: Created SystemJobScheduler and enabled SystemJobService
09-27 19:42:25.936  4113  4199 D WM-ForceStopRunnable: Performing cleanup operations.
09-27 19:42:25.970  4113  4199 W com.whatsapp: Accessing hidden method Landroid/text/StaticLayout;-><init>(Ljava/lang/CharSequence;IILandroid/text/TextPaint;ILandroid/text/Layout$Alignment;Landroid/text/TextDirectionHeuristic;FFZLandroid/text/TextUtils$TruncateAt;II)V (greylist-max-p, linking, denied)
09-27 19:42:25.970  4113  4199 W com.whatsapp: Accessing hidden method Landroid/text/StaticLayout;-><init>(Ljava/lang/CharSequence;IILandroid/text/TextPaint;ILandroid/text/Layout$Alignment;Landroid/text/TextDirectionHeuristic;FFZLandroid/text/TextUtils$TruncateAt;II)V (greylist-max-p, linking, denied)
09-27 19:42:27.721   692  3801 D WificondControl: Scan result ready event
09-27 19:42:27.727   692   733 I EthernetTracker: interfaceLinkStateChanged, iface: wlan0, up: true
09-27 19:42:27.731   274   475 I netd    : interfaceGetCfg("wlan0") <1.15ms>
09-27 19:42:27.910   274  4153 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
09-27 19:42:27.916   274  4209 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
09-27 19:42:27.920   274  4197 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
09-27 19:42:27.924   274  4213 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
09-27 19:42:28.346   692  3828 W ActivityManager: Background start not allowed: service Intent { act=com.whatsapp.messaging.MessageService.START cmp=com.whatsapp/.messaging.MessageService } to com.whatsapp/.messaging.MessageService from pid=4113 uid=10099 pkg=com.whatsapp startFg?=false
09-27 19:42:30.462  4113  4131 I com.whatsapp: Waiting for a blocking GC ProfileSaver
09-27 19:42:30.546  4113  4131 I com.whatsapp: WaitForGcToComplete blocked ProfileSaver on AddRemoveAppImageSpace for 84.270ms
09-27 19:42:36.311  2274  2287 I ndroid.systemu: Background young concurrent copying GC freed 123251(5821KB) AllocSpace objects, 5(100KB) LOS objects, 34% free, 10MB/16MB, paused 105us total 122.032ms
09-27 19:42:36.437  3047  4626 I ExposureNotification: Receive alarm [CONTEXT service_id=236 ]
09-27 19:42:36.437  3047  4626 I ExposureNotification: CancellableAlarmListener.alarmFired called [CONTEXT service_id=236 ]
09-27 19:42:36.438  3047  4626 I ExposureNotification: restartScanByScheduledTask prepare to restart scan [CONTEXT service_id=236 ]
09-27 19:42:36.438  3047  4626 I ExposureNotification: Not scanning! [CONTEXT service_id=236 ]
09-27 19:42:36.450  3047  4626 I ExposureNotification: Set scanning parameters. setLegacy=false [CONTEXT service_id=236 ]
09-27 19:42:36.450  3047  4626 I ExposureNotification: Set scanning parameters. matchMode=2, callback type=1 [CONTEXT service_id=236 ]
09-27 19:42:36.454   692   692 V SettingsProvider: Notifying for 0: content://settings/global/ble_scan_low_latency_window_ms
09-27 19:42:36.456   692   692 V SettingsProvider: Notifying for 0: content://settings/global/ble_scan_low_latency_interval_ms
09-27 19:42:36.458  3047  4626 D BluetoothAdapter: isLeEnabled(): ON
09-27 19:42:36.461  2252  2850 I bt_stack: [INFO:gatt_api.cc(946)] GATT_Register f51573e9-1778-9210-38ff-789bccea5e08
09-27 19:42:36.461  2252  2850 I bt_stack: [INFO:gatt_api.cc(966)] allocated gatt_if=6
09-27 19:42:36.462  3047  4894 D BluetoothLeScanner: onScannerRegistered() - status=0 scannerId=6 mScannerId=0
09-27 19:42:36.467  3047  4626 I ExposureNotification: Starting scanning. scanMode=2 [CONTEXT service_id=236 ]
09-27 19:42:36.467  3047  4626 I ExposureNotification: Schedule stop the scan after 4 seconds [CONTEXT service_id=236 ]
09-27 19:42:36.467  3047  4626 I ExposureNotification: ScheduledExecutorImpl.schedule called, delay=4000ms [CONTEXT service_id=236 ]
09-27 19:42:36.468  3047  4626 I ExposureNotification: Hold wakelock 5 seconds for scanning [CONTEXT service_id=236 ]
09-27 19:42:36.470  3047  4626 I ExposureNotification: Execute opportunisticScheduledTask result=false [CONTEXT service_id=236 ]
09-27 19:42:36.470  3047  4626 I ExposureNotification: Execute opportunisticScheduledTask result=false [CONTEXT service_id=236 ]
09-27 19:42:37.216  3047  3047 I ExposureNotification: Scan device 7D:50:FE:F2:2A:5C, type=1, id=E6B928F93E6BA5530F219E2E2CC4AE39, raw_rssi=-35, calibrated_rssi=-39, meta=D6FF24C8, previous_scan=1601228384 [CONTEXT service_id=236 ]
09-27 19:42:37.219  3047  3047 I ExposureNotification: BleDatabaseWriter.writeBleSighting, id=E6B928F93E6BA5530F219E2E2CC4AE39 [CONTEXT service_id=236 ]
09-27 19:42:40.482  3047  4626 I ExposureNotification: Stopping scanning. [CONTEXT service_id=236 ]
09-27 19:42:40.487   692   692 V SettingsProvider: Notifying for 0: content://settings/global/ble_scan_low_latency_window_ms
09-27 19:42:40.488   692   692 V SettingsProvider: Notifying for 0: content://settings/global/ble_scan_low_latency_interval_ms
09-27 19:42:40.489  3047  4626 D BluetoothAdapter: isLeEnabled(): ON
09-27 19:42:40.502  3047  4626 I ExposureNotification: BleScanner adjust scan interval due to screen on, adjust ratio 0.80 [CONTEXT service_id=236 ]
09-27 19:42:40.503  3047  4626 I ExposureNotification: Schedule start normal scan after 230 seconds [CONTEXT service_id=236 ]
09-27 19:42:40.508  3047  4626 I ExposureNotification: AlarmManagerImpl.schedule called, setExactAndAllowWhileIdle, delay=230000ms [CONTEXT service_id=236 ]
09-27 19:42:40.509  3047  4626 I ExposureNotification: Execute opportunisticScheduledTask result=false [CONTEXT service_id=236 ]
09-27 19:42:40.509  3047  4626 I ExposureNotification: Execute opportunisticScheduledTask result=false [CONTEXT service_id=236 ]
09-27 19:43:00.036  2274  2274 D KeyguardClockSwitch: Updating clock: 19:43
09-27 19:43:25.084  3047  4012 I NetworkScheduler.Stats: Task com.google.android.gms/com.google.android.gms.icing.service.IcingGcmTaskService started execution. cause:4 exec_start_elapsed_seconds: 10594 [CONTEXT service_id=218 ]
09-27 19:43:25.094  3047  2426 I NetworkScheduler.Stats: Task com.google.android.gms/com.google.android.gms.icing.service.IcingGcmTaskService finished executing. cause:4 result: 1 elapsed_millis: 66 uptime_millis: 66 exec_start_elapsed_seconds: 10594 [CONTEXT service_id=218 ]
09-27 19:43:25.102  3777  3009 I Icing   : Indexing com.google.android.gm-internal.3p:EmailMessage from com.google.android.gm using seqno 0
09-27 19:43:25.116  3777  3009 I chatty  : uid=10032(com.google.android.gms) lowpool[53] identical 2 lines
09-27 19:43:25.123  3777  3009 I Icing   : Indexing com.google.android.gm-internal.3p:EmailMessage from com.google.android.gm using seqno 0
09-27 19:43:25.180  3047  2426 I NetworkScheduler.Stats: Task com.google.android.gms/com.google.android.gms.checkin.EventLogService started execution. cause:5 exec_start_elapsed_seconds: 10594 [CONTEXT service_id=218 ]
09-27 19:43:25.187  3777  1270 I Checkin : [EventLogChimeraService] Opted in for usage reporting: false
09-27 19:43:25.187  3777  1270 I Checkin : [EventLogChimeraService] Aggregate from 1601226550637 (log), 1601226550637 (data)
09-27 19:43:25.267   692  3823 I DropBoxManagerService: add tag=event_data isTagEnabled=true flags=0x2
09-27 19:43:25.276   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
09-27 19:43:25.276   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
09-27 19:43:25.296  3047  1794 I NetworkScheduler.Stats: Task com.google.android.gms/com.google.android.gms.checkin.EventLogService finished executing. cause:5 result: 1 elapsed_millis: 155 uptime_millis: 154 exec_start_elapsed_seconds: 10594 [CONTEXT service_id=218 ]
09-27 19:43:27.105 17441 17441 I abb     : StartCommandInProcess(73657474696e67730067657400656e61 settings.get.ena [truncated])
09-27 19:43:27.117  3831  3831 W Binder:692_E: type=1400 audit(0.0:1735): avc: denied { getopt } for scontext=u:r:system_server:s0 tcontext=u:r:shell:s0 tclass=unix_stream_socket permissive=0
09-27 19:43:27.117  3831  3831 I chatty  : uid=1000(system) Binder:692_E identical 1 line
09-27 19:43:27.117  3831  3831 W Binder:692_E: type=1400 audit(0.0:1737): avc: denied { getopt } for scontext=u:r:system_server:s0 tcontext=u:r:shell:s0 tclass=unix_stream_socket permissive=0
09-27 19:43:27.117  3560  3560 W adbd    : type=1400 audit(0.0:1738): avc: denied { shutdown } for scontext=u:r:adbd:s0 tcontext=u:r:shell:s0 tclass=unix_stream_socket permissive=0
09-27 19:43:27.125 17441 17441 I abb     : StartCommandInProcess(7061636b61676500696e7374616c6c00 package.install. [truncated])
09-27 19:43:28.750  2748  2748 W Binder:692_7: type=1400 audit(0.0:1739): avc: denied { getopt } for scontext=u:r:system_server:s0 tcontext=u:r:shell:s0 tclass=unix_stream_socket permissive=0
09-27 19:43:29.172   692  3826 W system_server: Long monitor contention with owner Binder:692_7 (2748) at void com.android.server.pm.PackageInstallerService$InternalCallback.onSessionSealedBlocking(com.android.server.pm.PackageInstallerSession)(PackageInstallerService.java:1306) waiters=0 in android.content.pm.PackageInstaller$SessionInfo com.android.server.pm.PackageInstallerService.getSessionInfo(int) for 223ms
09-27 19:43:29.303   692  3826 W system_server: Long monitor contention with owner PackageInstaller (1976) at long android.content.res.ApkAssets.nativeOpenXml(long, java.lang.String)(ApkAssets.java:-2) waiters=0 in int com.android.server.pm.PackageInstallerSession.getInstallerUid() for 129ms
09-27 19:43:29.321 30266 30266 I Finsky  : [2] ahgm.a(4): Verification requested, id = 19
09-27 19:43:29.332 30266 30266 E Finsky  : [2] VerifyPerSourceInstallationConsentInstallTask.b(2): Package name null is not an installed package
09-27 19:43:29.338 30266  4323 I Finsky  : [1342] ahii.a(7): Single user settings service is not running, bind it now
09-27 19:43:29.344 30266 30266 I Finsky  : [2] ahih.onServiceConnected(1): Single user settings service is connected
09-27 19:43:29.351 30266  4323 W Settings: Setting install_non_market_apps has moved from android.provider.Settings.Global to android.provider.Settings.Secure, returning read-only value.
09-27 19:43:30.338 30266  4323 I Finsky  : [1342] mlu.a(10): Task 7 requested foreground
09-27 19:43:30.340 30266  4323 I Finsky  : [1342] mlu.a(16): Not entering foreground
09-27 19:43:31.122 30266  4330 I Finsky  : [1345] ahoy.b(3): Verify: Verification package=org.test.weatherstation, id=19 response=0
09-27 19:43:31.425 30266  4323 I Finsky  : [1342] VerifyAdvancedProtectionInstallTask.c(1): Verify AP install started
09-27 19:43:31.426 30266  4323 I Finsky  : [1342] VerifyAdvancedProtectionInstallTask.c(2): Allowing install because there are no Advanced Protection users
09-27 19:43:31.427 30266 30266 I Finsky  : [2] VerifyAdvancedProtectionInstallTask.iv(2): Reported verification result: ALLOW
09-27 19:43:31.427 30266  4323 I Finsky  : [1342] VerifyPerSourceInstallationConsentInstallTask.c(3): PSIC verification started with installer uid: 2000 package name: null, originating uid: -1
09-27 19:43:31.429 30266 30266 I Finsky  : [2] VerifyInstallTask.c(15): Verifying id=19, result=1
09-27 19:43:31.431 30266 30266 I Finsky  : [2] VerifyInstallTask.iv(6): Verification complete: id=19, package_name=org.test.weatherstation
09-27 19:43:31.478   692   748 I ActivityManager: Force stopping org.test.weatherstation appid=10233 user=-1: installPackageLI
09-27 19:43:31.481   692   767 I PackageManager: Update package org.test.weatherstation code path from /data/app/org.test.weatherstation-PdWonXbYGNe10Z6U83A5HQ== to /data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==; Retain data and using new
09-27 19:43:31.481   692   767 I PackageManager: Update package org.test.weatherstation resource path from /data/app/org.test.weatherstation-PdWonXbYGNe10Z6U83A5HQ== to /data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==; Retain data and using new
09-27 19:43:31.615   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_NETWORK_POLICY from package com.google.android.carriersetup (protectionLevel=2 flags=0x2088be45)
09-27 19:43:31.615   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_DOCUMENTS from package com.google.android.youtube (protectionLevel=262146 flags=0x30dbbe44)
09-27 19:43:31.616   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.google.android.youtube (protectionLevel=1250 flags=0x30dbbe44)
09-27 19:43:31.618   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH from package com.android.providers.calendar (protectionLevel=2 flags=0x30883e45)
09-27 19:43:31.618   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl from package com.android.providers.calendar (protectionLevel=2 flags=0x30883e45)
09-27 19:43:31.619   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package org.telegram.messenger (protectionLevel=1250 flags=0x20983e44)
09-27 19:43:31.619   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package org.telegram.messenger (protectionLevel=66 flags=0x20983e44)
09-27 19:43:31.620   692   767 I PackageManager: Un-granting permission com.google.android.gm.permission.READ_GMAIL from package com.google.android.apps.docs.editors.docs (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.620   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH from package com.google.android.apps.docs.editors.docs (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.620   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.OTHER_SERVICES from package com.google.android.apps.docs.editors.docs (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.620   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES from package com.google.android.apps.docs.editors.docs (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.620   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.writely from package com.google.android.apps.docs.editors.docs (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.620   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.wise from package com.google.android.apps.docs.editors.docs (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.READ_WALLPAPER_INTERNAL from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.SET_WALLPAPER_COMPONENT from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.CHANGE_CONFIGURATION from package com.huawei.android.thememanager (protectionLevel=50 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.huawei.android.thememanager (protectionLevel=1218 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SECURE_SETTINGS from package com.huawei.android.thememanager (protectionLevel=50 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.INSTALL_PACKAGES from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.DELETE_PACKAGES from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.READ_PRIVILEGED_PHONE_STATE from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.WRITE_MEDIA_STORAGE from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.CHANGE_OVERLAY_PACKAGES from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.START_ACTIVITIES_FROM_BACKGROUND from package com.huawei.android.thememanager (protectionLevel=49682 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_USERS from package com.huawei.android.thememanager (protectionLevel=50 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_USERS_FULL from package com.huawei.android.thememanager (protectionLevel=258 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_USERS from package com.huawei.android.thememanager (protectionLevel=18 flags=0x38c87e04)
09-27 19:43:31.621   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.huawei.android.thememanager (protectionLevel=66 flags=0x38c87e04)
09-27 19:43:31.622   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.whatsapp (protectionLevel=66 flags=0x30cbbe44)
09-27 19:43:31.625   692   767 I PackageManager: Un-granting permission com.google.android.gm.permission.READ_GMAIL from package com.google.android.apps.docs.editors.sheets (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.625   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH from package com.google.android.apps.docs.editors.sheets (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.625   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.OTHER_SERVICES from package com.google.android.apps.docs.editors.sheets (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.625   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES from package com.google.android.apps.docs.editors.sheets (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.625   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.writely from package com.google.android.apps.docs.editors.sheets (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.625   692   767 I PackageManager: Un-granting permission com.google.android.googleapps.permission.GOOGLE_AUTH.wise from package com.google.android.apps.docs.editors.sheets (protectionLevel=2 flags=0x28dbbe44)
09-27 19:43:31.626   692   767 I PackageManager: Un-granting permission android.permission.CHANGE_CONFIGURATION from package com.paypal.android.p2pmobile (protectionLevel=50 flags=0x30583e44)
09-27 19:43:31.627   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.huawei.himovie.overseas (protectionLevel=66 flags=0x38583e44)
09-27 19:43:31.627   692   767 I PackageManager: Un-granting permission android.permission.MOUNT_UNMOUNT_FILESYSTEMS from package com.huawei.himovie.overseas (protectionLevel=18 flags=0x38583e44)
09-27 19:43:31.627   692   767 I PackageManager: Un-granting permission android.permission.WRITE_MEDIA_STORAGE from package com.huawei.himovie.overseas (protectionLevel=18 flags=0x38583e44)
09-27 19:43:31.627   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SECURE_SETTINGS from package com.huawei.himovie.overseas (protectionLevel=50 flags=0x38583e44)
09-27 19:43:31.627   692   767 I PackageManager: Un-granting permission android.permission.CHANGE_CONFIGURATION from package com.huawei.himovie.overseas (protectionLevel=50 flags=0x38583e44)
09-27 19:43:31.627   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.huawei.himovie.overseas (protectionLevel=1250 flags=0x38583e44)
09-27 19:43:31.627   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.huawei.himovie.overseas (protectionLevel=1218 flags=0x38583e44)
09-27 19:43:31.628   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.microsoft.office.excel (protectionLevel=1250 flags=0x30583e44)
09-27 19:43:31.628   692   767 I PackageManager: Un-granting permission android.permission.MOUNT_UNMOUNT_FILESYSTEMS from package it.gruppobper.ams.android.bper (protectionLevel=18 flags=0x30583e44)
09-27 19:43:31.629   692   767 I PackageManager: Un-granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS from package com.android.vending (protectionLevel=2 flags=0x38cabe45)
09-27 19:43:31.630   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.microsoft.skydrive (protectionLevel=1218 flags=0x30d83e44)
09-27 19:43:31.631   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.microsoft.skydrive (protectionLevel=66 flags=0x30d83e44)
09-27 19:43:31.632   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.google.android.marvin.talkback (protectionLevel=1250 flags=0x304bbe44)
09-27 19:43:31.632   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.google.android.marvin.talkback (protectionLevel=1218 flags=0x304bbe44)
09-27 19:43:31.632   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.qnap.com.qgetpro (protectionLevel=1250 flags=0x38183e44)
09-27 19:43:31.632   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.qnap.com.qgetpro (protectionLevel=66 flags=0x38183e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.UPDATE_APP_OPS_STATS from package com.huawei.hwid (protectionLevel=274 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.PACKAGE_USAGE_STATS from package com.huawei.hwid (protectionLevel=114 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.READ_LOGS from package com.huawei.hwid (protectionLevel=50 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.REAL_GET_TASKS from package com.huawei.hwid (protectionLevel=18 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.huawei.hwid (protectionLevel=1250 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.huawei.hwid (protectionLevel=66 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_USERS from package com.huawei.hwid (protectionLevel=50 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_USERS from package com.huawei.hwid (protectionLevel=18 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.CREATE_USERS from package com.huawei.hwid (protectionLevel=2 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.READ_PRIVILEGED_PHONE_STATE from package com.huawei.hwid (protectionLevel=18 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.INSTALL_PACKAGES from package com.huawei.hwid (protectionLevel=18 flags=0x30483e44)
09-27 19:43:31.633   692   767 I PackageManager: Un-granting permission android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS from package com.huawei.hwid (protectionLevel=258 flags=0x30483e44)
09-27 19:43:31.634   692   767 I PackageManager: Un-granting permission android.permission.MODIFY_PHONE_STATE from package com.huawei.hwid (protectionLevel=18 flags=0x30483e44)
09-27 19:43:31.634   692   767 I PackageManager: Un-granting permission android.permission.STATUS_BAR from package com.huawei.hwid (protectionLevel=18 flags=0x30483e44)
09-27 19:43:31.634   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SECURE_SETTINGS from package com.huawei.hwid (protectionLevel=50 flags=0x30483e44)
09-27 19:43:31.634   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.huawei.hwid (protectionLevel=1218 flags=0x30483e44)
09-27 19:43:31.635   692   767 I PackageManager: Un-granting permission android.permission.BIND_ACCESSIBILITY_SERVICE from package com.lastpass.lpandroid (protectionLevel=2 flags=0x38c83e44)
09-27 19:43:31.635   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.lastpass.lpandroid (protectionLevel=1250 flags=0x38c83e44)
09-27 19:43:31.635   692   767 I PackageManager: Un-granting permission android.permission.PACKAGE_USAGE_STATS from package com.lastpass.lpandroid (protectionLevel=114 flags=0x38c83e44)
09-27 19:43:31.638   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.google.android.gm (protectionLevel=66 flags=0x28dbbe44)
09-27 19:43:31.639   692   767 I PackageManager: Un-granting permission android.permission.STATUS_BAR from package com.google.android.apps.tachyon (protectionLevel=18 flags=0x30c9be44)
09-27 19:43:31.643   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_ROLE_HOLDERS from package com.google.android.apps.wellbeing (protectionLevel=258 flags=0x20cbbe45)
09-27 19:43:31.643   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.dropbox.android (protectionLevel=66 flags=0x30d83e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.INSTALL_PACKAGES from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.DELETE_PACKAGES from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.FORCE_STOP_PACKAGES from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.OVERRIDE_WIFI_CONFIG from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.hicloud.android.clone (protectionLevel=1218 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.NETWORK_SETTINGS from package com.hicloud.android.clone (protectionLevel=2 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.MODIFY_PHONE_STATE from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.SET_PREFERRED_APPLICATIONS from package com.hicloud.android.clone (protectionLevel=770 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.UPDATE_APP_OPS_STATS from package com.hicloud.android.clone (protectionLevel=274 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_APP_OPS_MODES from package com.hicloud.android.clone (protectionLevel=770 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.WRITE_MEDIA_STORAGE from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.CLEAR_APP_USER_DATA from package com.hicloud.android.clone (protectionLevel=258 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_USERS_FULL from package com.hicloud.android.clone (protectionLevel=258 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.MOUNT_UNMOUNT_FILESYSTEMS from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SECURE_SETTINGS from package com.hicloud.android.clone (protectionLevel=50 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_NETWORK_POLICY from package com.hicloud.android.clone (protectionLevel=2 flags=0x38483e44)
09-27 19:43:31.644   692   767 I PackageManager: Un-granting permission com.huawei.android.thememanager.permission.THEME_PROVIDER_ACCESS from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.TETHER_PRIVILEGED from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.STATUS_BAR from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.PACKAGE_USAGE_STATS from package com.hicloud.android.clone (protectionLevel=114 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.hicloud.android.clone (protectionLevel=66 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.LOCAL_MAC_ADDRESS from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.CONNECTIVITY_INTERNAL from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_USERS from package com.hicloud.android.clone (protectionLevel=18 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_USERS from package com.hicloud.android.clone (protectionLevel=50 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.DEVICE_POWER from package com.hicloud.android.clone (protectionLevel=2 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.ACCESS_KEYGUARD_SECURE_STORAGE from package com.hicloud.android.clone (protectionLevel=2 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.START_ACTIVITIES_FROM_BACKGROUND from package com.hicloud.android.clone (protectionLevel=49682 flags=0x38483e44)
09-27 19:43:31.645   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.google.android.apps.docs (protectionLevel=66 flags=0x38cbbe44)
09-27 19:43:31.647   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.microsoft.office.powerpoint (protectionLevel=1250 flags=0x30583e44)
09-27 19:43:31.648   692   767 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_USERS from package com.google.android.syncadapters.contacts (protectionLevel=50 flags=0x20883e45)
09-27 19:43:31.649   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.synology.DSfile (protectionLevel=1250 flags=0x3098be44)
09-27 19:43:31.649   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.synology.DSfile (protectionLevel=66 flags=0x3098be44)
09-27 19:43:31.650   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.android.chrome (protectionLevel=66 flags=0xa0cbbe44)
09-27 19:43:31.652   692   767 I PackageManager: Un-granting permission android.permission.CAPTURE_VIDEO_OUTPUT from package com.google.android.gms (protectionLevel=2 flags=0xa0cabe45)
09-27 19:43:31.653   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_DEVICE_ADMINS from package com.google.android.gms (protectionLevel=2 flags=0xa0cabe45)
09-27 19:43:31.654   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_ACTIVITY_STACKS from package com.google.android.gms (protectionLevel=2 flags=0xa0cabe45)
09-27 19:43:31.654   692   767 I PackageManager: Un-granting permission android.permission.CAPTURE_SECURE_VIDEO_OUTPUT from package com.google.android.gms (protectionLevel=2 flags=0xa0cabe45)
09-27 19:43:31.654   692   767 I PackageManager: Un-granting permission android.permission.WRITE_DEVICE_CONFIG from package com.google.android.gms (protectionLevel=524802 flags=0xa0cabe45)
09-27 19:43:31.654   692   767 I PackageManager: Un-granting permission android.permission.MANAGE_ROLLBACKS from package com.google.android.gms (protectionLevel=514 flags=0xa0cabe45)
09-27 19:43:31.658   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package org.lineageos.jelly (protectionLevel=66 flags=0x30c8be45)
09-27 19:43:31.660   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.google.android.apps.photos (protectionLevel=1250 flags=0x38d9be44)
09-27 19:43:31.660   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.google.android.apps.photos (protectionLevel=1218 flags=0x38d9be44)
09-27 19:43:31.660   692   767 I PackageManager: Un-granting permission android.permission.WRITE_MEDIA_STORAGE from package com.google.android.apps.photos (protectionLevel=18 flags=0x38d9be44)
09-27 19:43:31.662   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.facebook.katana (protectionLevel=1218 flags=0x30d9be44)
09-27 19:43:31.663   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.facebook.katana (protectionLevel=66 flags=0x30d9be44)
09-27 19:43:31.663   692   767 I PackageManager: Un-granting permission android.permission.BATTERY_STATS from package com.facebook.katana (protectionLevel=50 flags=0x30d9be44)
09-27 19:43:31.663   692   767 I PackageManager: Un-granting permission android.permission.MOUNT_UNMOUNT_FILESYSTEMS from package com.qnap.qfile (protectionLevel=18 flags=0x38183e44)
09-27 19:43:31.663   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.qnap.qfile (protectionLevel=1250 flags=0x38183e44)
09-27 19:43:31.663   692   767 I PackageManager: Un-granting permission android.permission.CHANGE_CONFIGURATION from package com.qnap.qfile (protectionLevel=50 flags=0x38183e44)
09-27 19:43:31.663   692   767 I PackageManager: Un-granting permission android.permission.READ_LOGS from package com.qnap.qfile (protectionLevel=50 flags=0x38183e44)
09-27 19:43:31.664   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.qnap.qfile (protectionLevel=66 flags=0x38183e44)
09-27 19:43:31.665   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.glovo (protectionLevel=66 flags=0x30183e44)
09-27 19:43:31.666   692   767 I PackageManager: Un-granting permission android.permission.CLEAR_APP_CACHE from package com.avast.android.cleaner (protectionLevel=18 flags=0x20d83e44)
09-27 19:43:31.666   692   767 I PackageManager: Un-granting permission android.permission.PACKAGE_USAGE_STATS from package com.avast.android.cleaner (protectionLevel=114 flags=0x20d83e44)
09-27 19:43:31.666   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.avast.android.cleaner (protectionLevel=1218 flags=0x20d83e44)
09-27 19:43:31.666   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.avast.android.cleaner (protectionLevel=1250 flags=0x20d83e44)
09-27 19:43:31.666   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.google.android.apps.translate (protectionLevel=1250 flags=0x38c9be44)
09-27 19:43:31.671   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package pl.solidexplorer2 (protectionLevel=1218 flags=0x20883c44)
09-27 19:43:31.671   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package pl.solidexplorer2 (protectionLevel=66 flags=0x20883c44)
09-27 19:43:31.681   692   767 I PackageManager: Un-granting permission android.permission.SYSTEM_ALERT_WINDOW from package com.qnap.qmanager (protectionLevel=1250 flags=0x38183e44)
09-27 19:43:31.681   692   767 I PackageManager: Un-granting permission android.permission.REQUEST_INSTALL_PACKAGES from package com.qnap.qmanager (protectionLevel=66 flags=0x38183e44)
09-27 19:43:31.684   692   767 I PackageManager: Un-granting permission android.permission.CONNECTIVITY_USE_RESTRICTED_NETWORKS from package com.android.captiveportallogin (protectionLevel=18 flags=0x38c8be45)
09-27 19:43:31.684   692   767 I PackageManager: Un-granting permission android.permission.NETWORK_BYPASS_PRIVATE_DNS from package com.android.captiveportallogin (protectionLevel=2 flags=0x38c8be45)
09-27 19:43:31.685   692   767 I PackageManager: Un-granting permission android.permission.INTERACT_ACROSS_PROFILES from package com.google.android.inputmethod.latin (protectionLevel=18 flags=0x30cabe44)
09-27 19:43:31.685   692   767 I PackageManager: Un-granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS from package com.amazon.kindle (protectionLevel=2 flags=0x30d83e44)
09-27 19:43:31.685   692   767 I PackageManager: Un-granting permission android.permission.WRITE_SETTINGS from package com.amazon.kindle (protectionLevel=1218 flags=0x30d83e44)
09-27 19:43:31.685   692   767 I PackageManager: Un-granting permission android.permission.READ_PRIVILEGED_PHONE_STATE from package it.infocert.infocertid (protectionLevel=18 flags=0x30083e44)
09-27 19:43:31.820   692   733 W system_server: Long monitor contention with owner PackageManager (767) at void com.android.server.pm.PackageManagerService.installPackagesLI(java.util.List)(PackageManagerService.java:17147) waiters=0 in void com.android.server.pm.permission.PermissionManagerService.doNotifyRuntimePermissionStateChanged(java.lang.String, int) for 133ms
09-27 19:43:31.820   692   733 W Looper  : Slow dispatch took 134ms android.fg h=android.os.Handler c=<recycled PooledLambda@3483971> m=0
09-27 19:43:31.833   274   274 I netd    : trafficSetNetPermForUids(4, [10233]) <0.29ms>
09-27 19:43:31.845   403   455 E         : Couldn't opendir /data/app/vmdl1326329152.tmp: No such file or directory
09-27 19:43:31.845   403   455 E installd: Failed to delete /data/app/vmdl1326329152.tmp: No such file or directory
09-27 19:43:31.843  2748  2748 W Binder:692_7: type=1400 audit(0.0:1740): avc: denied { getopt } for scontext=u:r:system_server:s0 tcontext=u:r:shell:s0 tclass=unix_stream_socket permissive=0
09-27 19:43:31.843  2748  2748 I chatty  : uid=1000(system) Binder:692_7 identical 1 line
09-27 19:43:31.843  2748  2748 W Binder:692_7: type=1400 audit(0.0:1742): avc: denied { getopt } for scontext=u:r:system_server:s0 tcontext=u:r:shell:s0 tclass=unix_stream_socket permissive=0
09-27 19:43:31.843  3560  3560 W adbd    : type=1400 audit(0.0:1743): avc: denied { shutdown } for scontext=u:r:adbd:s0 tcontext=u:r:shell:s0 tclass=unix_stream_socket permissive=0
09-27 19:43:31.850   692   767 I ActivityManager: Force stopping org.test.weatherstation appid=10233 user=0: pkg removed
09-27 19:43:31.884  2252  2252 D BluetoothMapAppObserver: onReceive
09-27 19:43:31.884  2252  2252 D BluetoothMapAppObserver: The removed package is: org.test.weatherstation
09-27 19:43:31.884  2252  2252 V AvrcpMediaPlayerList: mPackageChangedBroadcastReceiver: action: android.intent.action.PACKAGE_REMOVED
09-27 19:43:31.886  3756  3756 I GsaVoiceInteractionSrv: O received Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) }
09-27 19:43:31.890   692  2162 I InputReader: Reconfiguring input devices.  changes=0x00000010
09-27 19:43:31.891   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.android.vending/com.google.android.finsky.packagemanager.impl.PackageMonitorReceiverImpl$RegisteredReceiver
09-27 19:43:31.891   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.android.vending/com.google.android.finsky.instantapps.appmanagement.InstantAppRemoveMonitor
09-27 19:43:31.892   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.gms/.games.chimera.GamesSystemBroadcastReceiverProxy
09-27 19:43:31.893   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
09-27 19:43:31.893   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.googlequicksearchbox/com.google.android.apps.gsa.googlequicksearchbox.GelStubAppWatcher
09-27 19:43:31.896 30266 30266 I Finsky  : [2] vuz.a(18): PackageMonitorReceiverImpl - Received: android.intent.action.PACKAGE_REMOVED, [3wZ9S3pbeMOr2aPfCC0N61H5_o_QM8Ci9szp8Lnq0Sc]
09-27 19:43:31.896 30266 30266 I Finsky  : [2] vwa.d(9): Invalidating cached PackageState for org.test.weatherstation
09-27 19:43:31.909 30266 30266 I Finsky  : [2] mul.c(2): Frosting ID looked up on UI thread. Caller should move to a background thread.
09-27 19:43:31.915 30266 30266 I Finsky  : [2] okv.c(3): Installer: package org.test.weatherstation was removed. replacing: true
09-27 19:43:31.919 30266 30266 I Finsky  : [2] olt.a(196): Installer: Notifying status update. package=org.test.weatherstation, status=UNINSTALLED
09-27 19:43:31.923   692  2162 I InputReader: Reconfiguring input devices.  changes=0x00000010
09-27 19:43:31.924  2252  2252 D BluetoothMapAppObserver: onReceive
09-27 19:43:31.924  2252  2252 D BluetoothMapAppObserver: The installed package is: org.test.weatherstation
09-27 19:43:31.953  2252  2252 D BluetoothMapAppObserver: Found 0 application(s) with intent android.bluetooth.action.BLUETOOTH_MAP_PROVIDER
09-27 19:43:31.953  2252  2252 D BluetoothMapAppObserver: Found 0 application(s) with intent android.bluetooth.action.BLUETOOTH_MAP_IM_PROVIDER
09-27 19:43:31.953  2252  2252 V AvrcpMediaPlayerList: mPackageChangedBroadcastReceiver: action: android.intent.action.PACKAGE_ADDED
09-27 19:43:31.953  2252  2252 D AvrcpMediaPlayerList: Name of package changed: org.test.weatherstation
09-27 19:43:31.955  3756  3756 I GsaVoiceInteractionSrv: O received Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) }
09-27 19:43:31.960 30266  4343 I Finsky  : [1348] ezi.a(23): Cancelled 0 ongoing asset module downloads for package org.test.weatherstation due to a concurrent app update.
09-27 19:43:31.964 30266 30266 I Finsky  : [2] mul.c(2): Frosting ID looked up on UI thread. Caller should move to a background thread.
09-27 19:43:31.965   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to org.lineageos.audiofx/.Compatibility$Receiver
09-27 19:43:31.966   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.facebook.katana/com.facebook.feed.platformads.AppInstallReceiver
09-27 19:43:31.978   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.apps.magazines/com.google.android.libraries.social.peoplekit.thirdparty.viewcontrollers.ThirdPartyReceiver
09-27 19:43:31.979 30266 30266 I Finsky  : [2] olt.a(229): Installer: found apps to install. isMultiUserMode=false, apps=[]
09-27 19:43:31.986 30266 30266 I Finsky  : [2] vuz.a(18): PackageMonitorReceiverImpl - Received: android.intent.action.PACKAGE_ADDED, [3wZ9S3pbeMOr2aPfCC0N61H5_o_QM8Ci9szp8Lnq0Sc]
09-27 19:43:31.996 30266 30266 I Finsky  : [2] vwa.d(9): Invalidating cached PackageState for org.test.weatherstation
09-27 19:43:31.997 30266  4335 I Finsky  : [1346] mty.run(16): Wrote row to frosting DB: 1434
09-27 19:43:32.004 30266  4347 I Finsky  : [1349] oyi.b(66): IQ: Notifying installation update. package=org.test.weatherstation, status=UNINSTALLED
09-27 19:43:32.012 30266 30266 I Finsky  : [2] mul.c(2): Frosting ID looked up on UI thread. Caller should move to a background thread.
09-27 19:43:32.022   692  2614 I ActivityTaskManager: START u0 {act=org.kivy.android.PythonActivity flg=0x10000000 cmp=org.test.weatherstation/org.kivy.android.PythonActivity} from uid 2000
09-27 19:43:32.042 30266 30266 I Finsky  : [2] ajbk.a(6): Do not start WearSupportService due to Wear service optimization
09-27 19:43:32.047 30266  4343 I Finsky  : [1348] ezf.a(15): Asset module broadcast after update successful for package org.test.weatherstation. 0 sessions broadcast.
09-27 19:43:32.049   692   737 E system_server: Invalid ID 0x00000000.
09-27 19:43:32.054 30266  4347 I Finsky  : [1349] oyi.b(49): IQ: No matching installs to run for jobs: []
09-27 19:43:32.056 30266  4335 I Finsky  : [1346] mty.run(16): Wrote row to frosting DB: 1435
09-27 19:43:32.066 30266 30266 I Finsky  : [2] mul.c(2): Frosting ID looked up on UI thread. Caller should move to a background thread.
09-27 19:43:32.072  3756  3756 I GsaVoiceInteractionSrv: O received Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) }
09-27 19:43:32.072   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.apps.maps/com.google.android.libraries.social.peoplekit.thirdparty.viewcontrollers.ThirdPartyReceiver
09-27 19:43:32.076   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.apps.photos/com.google.android.libraries.social.peoplekit.thirdparty.viewcontrollers.ThirdPartyReceiver
09-27 19:43:32.090   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.packageinstaller/com.android.packageinstaller.PackageInstalledReceiver
09-27 19:43:32.091   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.android.vending/com.google.android.finsky.packagemanager.impl.PackageMonitorReceiverImpl$RegisteredReceiver
09-27 19:43:32.104  3799  3799 D RegisteredNfcFServicesCache: Service unchanged, not updating
09-27 19:43:32.106   275   275 D Zygote  : Forked child process 4359
09-27 19:43:32.108   692   749 I ActivityManager: Start proc 4359:org.test.weatherstation/u0a233 for pre-top-activity {org.test.weatherstation/org.kivy.android.PythonActivity}
09-27 19:43:32.109   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.gms/.games.chimera.GamesSystemBroadcastReceiverProxy
09-27 19:43:32.110   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.gms/.gass.chimera.PackageChangeBroadcastReceiver
09-27 19:43:32.110   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
09-27 19:43:32.111   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.googlequicksearchbox/com.google.android.apps.gsa.googlequicksearchbox.GelStubAppWatcher
09-27 19:43:32.111   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to org.lineageos.audiofx/.Compatibility$Receiver
09-27 19:43:32.111   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.avast.android.cleaner/.receiver.AppInstallMonitorReceiver
09-27 19:43:32.111 30266 30266 I Finsky  : [2] vuz.a(18): PackageMonitorReceiverImpl - Received: android.intent.action.PACKAGE_ADDED, [3wZ9S3pbeMOr2aPfCC0N61H5_o_QM8Ci9szp8Lnq0Sc]
09-27 19:43:32.111 30266 30266 I Finsky  : [2] vwa.d(9): Invalidating cached PackageState for org.test.weatherstation
09-27 19:43:32.111   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.facebook.katana/com.facebook.feed.platformads.AppInstallReceiver
09-27 19:43:32.120  4359  4359 W main    : type=1400 audit(0.0:1744): avc: denied { write } for name="tasks" dev="tmpfs" ino=9407 scontext=u:r:zygote:s0 tcontext=u:object_r:device:s0 tclass=file permissive=0 app=org.test.weatherstation
09-27 19:43:32.122   692  2162 I InputReader: Reconfiguring input devices.  changes=0x00000010
09-27 19:43:32.127  4359  4359 I .weatherstatio: Late-enabling -Xcheck:jni
09-27 19:43:32.127   692   692 W Looper  : Slow delivery took 208ms main h=android.os.Handler c=android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA@594c1ee m=0
09-27 19:43:32.128   692   692 I Telecom : DefaultDialerCache: Refreshing default dialer for user 0: now com.android.dialer: DDC.oR@ANY
09-27 19:43:32.129  2628  2661 I droid.launcher: Background concurrent copying GC freed 7408(409KB) AllocSpace objects, 2(32KB) LOS objects, 66% free, 3041KB/9185KB, paused 70us total 276.465ms
09-27 19:43:32.156 11674 11726 I earchbox:searc: Waiting for a blocking GC ProfileSaver
09-27 19:43:32.164  4359  4359 E .weatherstatio: Unknown bits set in runtime_flags: 0x8000
09-27 19:43:32.170 30266 30266 I Finsky  : [2] mul.c(2): Frosting ID looked up on UI thread. Caller should move to a background thread.
09-27 19:43:32.182 30266  4335 I Finsky  : [1346] mty.run(16): Wrote row to frosting DB: 1436
09-27 19:43:32.187   692   692 V BackupManagerConstants: getFullBackupIntervalMilliseconds(...) returns 86400000
09-27 19:43:32.187   692   692 V BackupManagerConstants: getFullBackupRequiredNetworkType(...) returns 2
09-27 19:43:32.187   692   692 V BackupManagerConstants: getFullBackupRequireCharging(...) returns true
09-27 19:43:32.190 30266 30266 I Finsky  : [2] vuz.a(21): PackageMonitorReceiverImpl - Deduping intent android.intent.action.PACKAGE_ADDED
09-27 19:43:32.208   692  3828 W OomAdjuster: Fallback pre-set sched group to default: not expected top priority
09-27 19:43:32.218  2513  2513 D CarrierSvcBindHelper: No carrier app for: 0
09-27 19:43:32.229   692   692 W Looper  : Drained
09-27 19:43:32.241 30266 30266 I Finsky  : [2] vuz.a(18): PackageMonitorReceiverImpl - Received: android.intent.action.PACKAGE_ADDED, [3wZ9S3pbeMOr2aPfCC0N61H5_o_QM8Ci9szp8Lnq0Sc]
09-27 19:43:32.241 30266 30266 I Finsky  : [2] vwa.d(9): Invalidating cached PackageState for org.test.weatherstation
09-27 19:43:32.250 30266 30266 I Finsky  : [2] mul.c(2): Frosting ID looked up on UI thread. Caller should move to a background thread.
09-27 19:43:32.257 30266 30266 I Finsky  : [2] vuz.a(21): PackageMonitorReceiverImpl - Deduping intent android.intent.action.PACKAGE_ADDED
09-27 19:43:32.259  2513  2513 D CarrierSvcBindHelper: No carrier app for: 0
09-27 19:43:32.273   692  5276 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.gms/.gass.chimera.PackageChangeBroadcastReceiver
09-27 19:43:32.275  3047  4396 I Fitness : FitCleanupIntentOperation received Intent android.intent.action.PACKAGE_REMOVED [CONTEXT service_id=17 ]
09-27 19:43:32.275   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
09-27 19:43:32.276   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.googlequicksearchbox/com.google.android.apps.gsa.googlequicksearchbox.GelStubAppWatcher
09-27 19:43:32.276   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to org.lineageos.audiofx/.Compatibility$Receiver
09-27 19:43:32.276   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.avast.android.cleaner/.receiver.AppInstallMonitorReceiver
09-27 19:43:32.276   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.apps.photos/.account.full.FetchAccountPropertiesAppUpgradeBroadcastReceiver
09-27 19:43:32.276   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.apps.photos/.account.full.SyncAccountsForLoginBroadcastReceiver
09-27 19:43:32.277   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.google.android.apps.photos/.notificationchannels.AppUpdateBroadcastReceiver
09-27 19:43:32.277   692   748 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.PACKAGE_REPLACED dat=package:org.test.weatherstation flg=0x4000010 (has extras) } to com.synology.DSfile/.photobackup.PBBroadcastReceiver
09-27 19:43:32.278  2513  2513 D CarrierConfigLoader: mHandler: 9 phoneId: 0
09-27 19:43:32.283 30266  4335 I Finsky  : [1346] mty.run(16): Wrote row to frosting DB: 1437
09-27 19:43:32.295   692   733 W Looper  : Slow delivery took 202ms android.fg h=com.android.server.AppStateTracker$MyHandler c=null m=14
09-27 19:43:32.297  3777  4352 I Auth    : [SupervisedAccountIntentOperation] onHandleIntent(): android.intent.action.PACKAGE_ADDED
09-27 19:43:32.312  3777  4346 I ChromeSync: [Sync,SyncIntentOperation] Handling the intent: Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.test.weatherstation flg=0x4000010 cmp=com.google.android.gms/.chimera.GmsIntentOperationService (has extras) }.
09-27 19:43:32.317 30266  4335 I Finsky  : [1346] mty.run(16): Wrote row to frosting DB: 1438
09-27 19:43:32.325   692   733 W Looper  : Drained
09-27 19:43:32.330   274  4400 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
09-27 19:43:32.333  3777  4346 I ChromeSync: [Persistence,AffiliationManager] One of affiliation or grouping data for android://pZz1mZKDumMxW2h0cupB1V7jtaEle_RPDNRA374vt5smzTmC-CtzxUu-fBj4jTsBAO5oegTsiieq21AEhDnuqA==@org.test.weatherstation/ was not found. Marking affiliation data as stale...
09-27 19:43:32.334   274  4404 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
09-27 19:43:32.339 30266  4335 I Finsky  : [1346] mty.run(16): Wrote row to frosting DB: 1439
09-27 19:43:32.491  4359  4359 V PythonActivity: PythonActivity onCreate running
09-27 19:43:32.492  4359  4359 V PythonActivity: About to do super onCreate
09-27 19:43:32.492  4359  4359 V SDL     : Device: bacon
09-27 19:43:32.492  4359  4359 V SDL     : Model: A0001
09-27 19:43:32.492  4359  4359 V SDL     : onCreate()
09-27 19:43:32.492  4359  4359 V PythonActivity: Did super onCreate
09-27 19:43:32.492  4359  4359 V SDL     : getting identifier
09-27 19:43:32.492  4359  4359 V SDL     : kind is drawable and name presplash
09-27 19:43:32.493  4359  4359 V SDL     : result is 2130771970
09-27 19:43:32.500  4359  4359 V SDL     : asked to get string presplash_color
09-27 19:43:32.500  4359  4359 V SDL     : getting identifier
09-27 19:43:32.501  4359  4359 V SDL     : kind is string and name presplash_color
09-27 19:43:32.501  4359  4359 V SDL     : result is 2130968577
09-27 19:43:32.530  2274  2274 D ImageWallpaper: wallpaper visibility changes to: false
09-27 19:43:32.532  4359  4414 V PythonActivity: Ready to unpack
09-27 19:43:32.537 30266 30266 I Finsky  : [2] zmk.a(5): SCH: Jobs in database: 1-1337 3-159 12-1 24-77777777 26-1414141414 34-3 34-8 34-9 34-10 
09-27 19:43:32.546 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 24-77777777,  -> L: 0ms, D: 72292079ms, C: false, I: true, N: 0
09-27 19:43:32.547 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 1-1337, 12-1, 34-9,  -> L: 14507ms, D: 70856156ms, C: false, I: false, N: 1
09-27 19:43:32.547 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 34-3, 34-8, 34-10,  -> L: 0ms, D: 1285497286ms, C: false, I: true, N: 2
09-27 19:43:32.548 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 3-159, 34-3, 34-8, 34-10,  -> L: 0ms, D: 83658044ms, C: true, I: true, N: 2
09-27 19:43:32.548 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 26-1414141414,  -> L: 32668535ms, D: 33568535ms, C: false, I: false, N: 0
09-27 19:43:32.552  4359  4414 V pythonactivityutil: UNPACKING!!! private app
09-27 19:43:32.552  4359  4414 V SDL     : asked to get string private_version
09-27 19:43:32.552  4359  4414 V SDL     : getting identifier
09-27 19:43:32.552  4359  4414 V SDL     : kind is string and name private_version
09-27 19:43:32.553  4359  4414 V SDL     : result is 2130968578
09-27 19:43:32.553  4359  4414 V pythonactivityutil: Data version is 1601161016.4102933
09-27 19:43:32.579 30266  4337 I Finsky  : [1347] hnk.a(15): [ContentSync] finished, scheduled=true
09-27 19:43:32.598  4359  4359 V PythonActivity: onResume()
09-27 19:43:32.598  4359  4359 V SDL     : onResume()
09-27 19:43:32.625  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_ttf.so
09-27 19:43:32.626  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libhidapi.so
09-27 19:43:32.626  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libssl1.1.so
09-27 19:43:32.627  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libpython3.8m.so
09-27 19:43:32.627  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libffi.so
09-27 19:43:32.627  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libcrypto1.1.so
09-27 19:43:32.627  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_mixer.so
09-27 19:43:32.627  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libmain.so
09-27 19:43:32.627  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libSDL2_image.so
09-27 19:43:32.627  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libsqlite3.so
09-27 19:43:32.628  4359  4359 V pythonutil: Pattern libsqlite3\.so matched file libsqlite3.so
09-27 19:43:32.628  4359  4359 V pythonutil: Checking pattern libsqlite3\.so against libSDL2.so
09-27 19:43:32.629  4359  4359 V pythonutil: Checking pattern libffi\.so against libSDL2_ttf.so
09-27 19:43:32.629  4359  4359 V pythonutil: Checking pattern libffi\.so against libhidapi.so
09-27 19:43:32.629  4359  4359 V pythonutil: Checking pattern libffi\.so against libssl1.1.so
09-27 19:43:32.629  4359  4359 V pythonutil: Checking pattern libffi\.so against libpython3.8m.so
09-27 19:43:32.629  4359  4359 V pythonutil: Checking pattern libffi\.so against libffi.so
09-27 19:43:32.629  4359  4359 V pythonutil: Pattern libffi\.so matched file libffi.so
09-27 19:43:32.629  4359  4359 V pythonutil: Checking pattern libffi\.so against libcrypto1.1.so
09-27 19:43:32.630  4359  4359 V pythonutil: Checking pattern libffi\.so against libSDL2_mixer.so
09-27 19:43:32.630  4359  4359 V pythonutil: Checking pattern libffi\.so against libmain.so
09-27 19:43:32.630  4359  4359 V pythonutil: Checking pattern libffi\.so against libSDL2_image.so
09-27 19:43:32.630  4359  4359 V pythonutil: Checking pattern libffi\.so against libsqlite3.so
09-27 19:43:32.630  4359  4359 V pythonutil: Checking pattern libffi\.so against libSDL2.so
09-27 19:43:32.633  4359  4359 V pythonutil: Checking pattern libpng16\.so against libSDL2_ttf.so
09-27 19:43:32.633  4359  4359 V pythonutil: Checking pattern libpng16\.so against libhidapi.so
09-27 19:43:32.633  4359  4359 V pythonutil: Checking pattern libpng16\.so against libssl1.1.so
09-27 19:43:32.633  4359  4359 V pythonutil: Checking pattern libpng16\.so against libpython3.8m.so
09-27 19:43:32.633  4359  4359 V pythonutil: Checking pattern libpng16\.so against libffi.so
09-27 19:43:32.633  4359  4359 V pythonutil: Checking pattern libpng16\.so against libcrypto1.1.so
09-27 19:43:32.634  4359  4359 V pythonutil: Checking pattern libpng16\.so against libSDL2_mixer.so
09-27 19:43:32.634  4359  4359 V pythonutil: Checking pattern libpng16\.so against libmain.so
09-27 19:43:32.634  4359  4359 V pythonutil: Checking pattern libpng16\.so against libSDL2_image.so
09-27 19:43:32.634  4359  4359 V pythonutil: Checking pattern libpng16\.so against libsqlite3.so
09-27 19:43:32.634  4359  4359 V pythonutil: Checking pattern libpng16\.so against libSDL2.so
09-27 19:43:32.635  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libSDL2_ttf.so
09-27 19:43:32.635  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libhidapi.so
09-27 19:43:32.635  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libssl1.1.so
09-27 19:43:32.636  4359  4359 V pythonutil: Pattern libssl.*\.so matched file libssl1.1.so
09-27 19:43:32.636  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libpython3.8m.so
09-27 19:43:32.636  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libffi.so
09-27 19:43:32.636  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libcrypto1.1.so
09-27 19:43:32.636  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libSDL2_mixer.so
09-27 19:43:32.636  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libmain.so
09-27 19:43:32.637  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libSDL2_image.so
09-27 19:43:32.637  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libsqlite3.so
09-27 19:43:32.638  4359  4359 V pythonutil: Checking pattern libssl.*\.so against libSDL2.so
09-27 19:43:32.638  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_ttf.so
09-27 19:43:32.639  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libhidapi.so
09-27 19:43:32.639  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libssl1.1.so
09-27 19:43:32.639  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libpython3.8m.so
09-27 19:43:32.639  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libffi.so
09-27 19:43:32.639  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libcrypto1.1.so
09-27 19:43:32.639  4359  4359 V pythonutil: Pattern libcrypto.*\.so matched file libcrypto1.1.so
09-27 19:43:32.640  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_mixer.so
09-27 19:43:32.640  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libmain.so
09-27 19:43:32.640  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2_image.so
09-27 19:43:32.640  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libsqlite3.so
09-27 19:43:32.640  4359  4359 V pythonutil: Checking pattern libcrypto.*\.so against libSDL2.so
09-27 19:43:32.642  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libSDL2_ttf.so
09-27 19:43:32.642  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libhidapi.so
09-27 19:43:32.642  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libssl1.1.so
09-27 19:43:32.642  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libpython3.8m.so
09-27 19:43:32.642  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libffi.so
09-27 19:43:32.642  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libcrypto1.1.so
09-27 19:43:32.643  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libSDL2_mixer.so
09-27 19:43:32.643  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libmain.so
09-27 19:43:32.643  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libSDL2_image.so
09-27 19:43:32.643  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libsqlite3.so
09-27 19:43:32.643  4359  4359 V pythonutil: Checking pattern libSDL2\.so against libSDL2.so
09-27 19:43:32.643  4359  4359 V pythonutil: Pattern libSDL2\.so matched file libSDL2.so
09-27 19:43:32.644  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libSDL2_ttf.so
09-27 19:43:32.644  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libhidapi.so
09-27 19:43:32.645  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libssl1.1.so
09-27 19:43:32.645  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libpython3.8m.so
09-27 19:43:32.645  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libffi.so
09-27 19:43:32.645  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libcrypto1.1.so
09-27 19:43:32.646  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libSDL2_mixer.so
09-27 19:43:32.646  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libmain.so
09-27 19:43:32.646  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libSDL2_image.so
09-27 19:43:32.646  4359  4359 V pythonutil: Pattern libSDL2_image\.so matched file libSDL2_image.so
09-27 19:43:32.647  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libsqlite3.so
09-27 19:43:32.647  4359  4359 V pythonutil: Checking pattern libSDL2_image\.so against libSDL2.so
09-27 19:43:32.648  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libSDL2_ttf.so
09-27 19:43:32.648  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libhidapi.so
09-27 19:43:32.648  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libssl1.1.so
09-27 19:43:32.648  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libpython3.8m.so
09-27 19:43:32.648  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libffi.so
09-27 19:43:32.648  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libcrypto1.1.so
09-27 19:43:32.649  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libSDL2_mixer.so
09-27 19:43:32.649  4359  4359 V pythonutil: Pattern libSDL2_mixer\.so matched file libSDL2_mixer.so
09-27 19:43:32.649  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libmain.so
09-27 19:43:32.649  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libSDL2_image.so
09-27 19:43:32.649  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libsqlite3.so
09-27 19:43:32.649  4359  4359 V pythonutil: Checking pattern libSDL2_mixer\.so against libSDL2.so
09-27 19:43:32.650  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libSDL2_ttf.so
09-27 19:43:32.651  4359  4359 V pythonutil: Pattern libSDL2_ttf\.so matched file libSDL2_ttf.so
09-27 19:43:32.651  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libhidapi.so
09-27 19:43:32.651  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libssl1.1.so
09-27 19:43:32.651  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libpython3.8m.so
09-27 19:43:32.651  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libffi.so
09-27 19:43:32.651  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libcrypto1.1.so
09-27 19:43:32.652  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libSDL2_mixer.so
09-27 19:43:32.652  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libmain.so
09-27 19:43:32.652  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libSDL2_image.so
09-27 19:43:32.652  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libsqlite3.so
09-27 19:43:32.652  4359  4359 V pythonutil: Checking pattern libSDL2_ttf\.so against libSDL2.so
09-27 19:43:32.652  4359  4359 V pythonutil: Loading library: sqlite3
09-27 19:43:32.654  4359  4359 V pythonutil: Loading library: ffi
09-27 19:43:32.655  4359  4359 V pythonutil: Loading library: ssl1.1
09-27 19:43:32.658  4359  4359 V pythonutil: Loading library: crypto1.1
09-27 19:43:32.659  4359  4359 V pythonutil: Loading library: SDL2
09-27 19:43:32.662  4359  4359 V pythonutil: Loading library: SDL2_image
09-27 19:43:32.663  4359  4359 V pythonutil: Loading library: SDL2_mixer
09-27 19:43:32.665  4359  4359 V pythonutil: Loading library: SDL2_ttf
09-27 19:43:32.667  4359  4359 V pythonutil: Loading library: python3.5m
09-27 19:43:32.670  4359  4359 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/lib/arm, /data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /system/vendor/lib]]] couldn't find "libpython3.5m.so"
09-27 19:43:32.670  4359  4359 V pythonutil: Loading library: python3.6m
09-27 19:43:32.671   692   747 W SearchableInfo: Invalid searchable metadata for com.paypal.android.p2pmobile/com.paypal.android.foundation.presentation.activity.DeveloperConfigRcsFlagsActivity: Search label must be a resource reference.
09-27 19:43:32.671  4359  4359 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/lib/arm, /data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /system/vendor/lib]]] couldn't find "libpython3.6m.so"
09-27 19:43:32.672  4359  4359 V pythonutil: Loading library: python3.7m
09-27 19:43:32.673  4359  4359 V pythonutil: Library loading error: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/base.apk"],nativeLibraryDirectories=[/data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/lib/arm, /data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/base.apk!/lib/armeabi-v7a, /system/lib, /system/product/lib, /system/vendor/lib]]] couldn't find "libpython3.7m.so"
09-27 19:43:32.673  4359  4359 V pythonutil: Loading library: python3.8m
09-27 19:43:32.677  4359  4359 V pythonutil: Loading library: main
09-27 19:43:32.678  4359  4359 V pythonutil: Loaded everything!
09-27 19:43:32.679  4359  4359 V SDL     : nativeSetupJNI()
09-27 19:43:32.681  4359  4359 V SDL     : AUDIO nativeSetupJNI()
09-27 19:43:32.682  4359  4359 V SDL     : CONTROLLER nativeSetupJNI()
09-27 19:43:32.708  4359  4359 D hidapi  : Initializing Bluetooth
09-27 19:43:32.709  4359  4359 D hidapi  : Couldn't initialize Bluetooth, missing android.permission.BLUETOOTH
09-27 19:43:32.729 11674 11688 I earchbox:searc: Background concurrent copying GC freed 149614(7811KB) AllocSpace objects, 7(412KB) LOS objects, 49% free, 13MB/26MB, paused 98us total 871.892ms
09-27 19:43:32.729 11674 11726 I earchbox:searc: WaitForGcToComplete blocked ProfileSaver on ProfileSaver for 573.023ms
09-27 19:43:32.739  3777  4457 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=AppsCorpus serviceId=36
09-27 19:43:32.739  4359  4359 V PythonActivity: Setting env vars for start.c and Python to use
09-27 19:43:32.740  4359  4359 V PythonActivity: Access to our meta-data...
09-27 19:43:32.741  4359  4359 I PythonActivity: Surface will NOT be transparent
09-27 19:43:32.741  4359  4359 V PythonActivity: onResume()
09-27 19:43:32.741  4359  4359 V SDL     : onResume()
09-27 19:43:32.765  4359  4406 I Adreno-EGL: <qeglDrvAPI_eglInitialize:379>: EGL 1.4 QUALCOMM build: Nondeterministic_AU_msm8974_LA.BF.1.1.3_RB1__release_AU (I741a3d36ca)
09-27 19:43:32.765  4359  4406 I Adreno-EGL: OpenGL ES Shader Compiler Version: E031.29.00.00
09-27 19:43:32.765  4359  4406 I Adreno-EGL: Build Date: 04/04/16 Mon
09-27 19:43:32.765  4359  4406 I Adreno-EGL: Local Branch: mybranch19053788
09-27 19:43:32.765  4359  4406 I Adreno-EGL: Remote Branch: quic/LA.BF.1.1.3_rb1.12
09-27 19:43:32.765  4359  4406 I Adreno-EGL: Local Patches: NONE
09-27 19:43:32.765  4359  4406 I Adreno-EGL: Reconstruct Branch: NOTHING
09-27 19:43:32.772  4359  4359 V SDL     : surfaceCreated()
09-27 19:43:32.772  4359  4359 V SDL     : surfaceChanged()
09-27 19:43:32.772  4359  4359 V SDL     : pixel format RGB_565
09-27 19:43:32.773  4359  4359 V SDL     : Window size: 1080x1848
09-27 19:43:32.773  4359  4359 V SDL     : Device size: 1080x1920
09-27 19:43:32.774  4359  4406 W Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:607>: EGL_BAD_ATTRIBUTE
09-27 19:43:32.776   692  3832 I qti_sensors_hal: LIS3DH Accelerometer: batch  50.00    inf
09-27 19:43:32.778  4359  4359 V SDL     : nativeResume()
09-27 19:43:32.779  4359  4416 V SDL     : Running main function SDL_main from library /data/app/org.test.weatherstation-ATc44PbESnqHxBkCw53FEg==/lib/arm/libmain.so
09-27 19:43:32.779  4359  4416 V PythonActivity: appConfirmedActive() -> preparing loading screen removal
09-27 19:43:32.780  4359  4416 V SDL     : nativeRunMain()
09-27 19:43:32.782  4359  4406 W Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:607>: EGL_BAD_ATTRIBUTE
09-27 19:43:32.784  4359  4416 I python  : Initializing Python for Android
09-27 19:43:32.784  4359  4416 I python  : Setting additional env vars from p4a_env_vars.txt
09-27 19:43:32.784  4359  4416 I python  : Changing directory to the one provided by ANDROID_ARGUMENT
09-27 19:43:32.784  4359  4416 I python  : /data/user/0/org.test.weatherstation/files/app
09-27 19:43:32.785  4359  4416 I python  : Preparing to initialize python
09-27 19:43:32.785 30266 30266 I Finsky  : [2] zkw.a(36): SCH: Cancelling existing jobscheduler jobs: 9007 9006 9000 9008 9009 
09-27 19:43:32.786 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9001, L: 0, D: 72292079, C: false, I: true, N: 0
09-27 19:43:32.789  4359  4416 I python  : _python_bundle dir exists
09-27 19:43:32.789  4359  4416 I python  : calculated paths to be...
09-27 19:43:32.789  4359  4416 I python  : /data/user/0/org.test.weatherstation/files/app/_python_bundle/stdlib.zip:/data/user/0/org.test.weatherstation/files/app/_python_bundle/modules
09-27 19:43:32.791  4359  4416 I python  : set wchar paths...
09-27 19:43:32.821 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9002, L: 14507, D: 70856156, C: false, I: false, N: 1
09-27 19:43:32.849 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9003, L: 0, D: 1285497286, C: false, I: true, N: 2
09-27 19:43:32.853 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9004, L: 0, D: 83658044, C: true, I: true, N: 2
09-27 19:43:32.855 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9005, L: 32668535, D: 33568535, C: false, I: false, N: 0
09-27 19:43:32.860 30266 30266 I Finsky  : [2] zmk.a(5): SCH: Jobs in database: 1-1337 3-159 12-1 24-77777777 26-1414141414 34-3 34-8 34-9 34-10 
09-27 19:43:32.868   207   207 I hwservicemanager: getTransport: Cannot find entry android.hardware.graphics.mapper@3.0::IMapper/default in either framework or device manifest.
09-27 19:43:32.870  4359  4406 W Gralloc3: mapper 3.x is not supported
09-27 19:43:32.871 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 24-77777777,  -> L: 0ms, D: 72291756ms, C: false, I: true, N: 0
09-27 19:43:32.872 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 1-1337, 12-1, 34-9,  -> L: 14183ms, D: 70855833ms, C: false, I: false, N: 1
09-27 19:43:32.872 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 34-3, 34-8, 34-10,  -> L: 0ms, D: 1285496964ms, C: false, I: true, N: 2
09-27 19:43:32.885  3777  3009 I GmsCoreXrpcWrapper: Returning a channel provider with trafficStatsTag=12803
09-27 19:43:32.886 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 3-159, 34-3, 34-8, 34-10,  -> L: 0ms, D: 83657722ms, C: true, I: true, N: 2
09-27 19:43:32.887 30266 30266 I Finsky  : [2] zkw.a(77): SCH: ConstraintMapping: 26-1414141414,  -> L: 32668211ms, D: 33568211ms, C: false, I: false, N: 0
09-27 19:43:32.901  4359  4359 V SDL     : onWindowFocusChanged(): true
09-27 19:43:32.931 30266  4337 I Finsky  : [1347] hnk.a(15): [ContentSync] finished, scheduled=true
09-27 19:43:32.968 11674  4424 I PBSessionCacheImpl: Deleted sessionId[51344396188756729] from persistence.
09-27 19:43:32.967  4416  4416 W SDLThread: type=1400 audit(0.0:1745): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/zlib.cpython-38.so" dev="mmcblk0p28" ino=280475 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:32.983  3777  4346 I ChromeSync: [Persistence,AffiliationManager] Fetching affiliations from the server.
09-27 19:43:33.010 30266 30266 I Finsky  : [2] zkw.a(36): SCH: Cancelling existing jobscheduler jobs: 9001 9004 9005 9003 9002 
09-27 19:43:33.010 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9000, L: 0, D: 72291756, C: false, I: true, N: 0
09-27 19:43:33.011 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9006, L: 14183, D: 70855833, C: false, I: false, N: 1
09-27 19:43:33.023 11674 11769 W SearchServiceCore: Abort, client detached.
09-27 19:43:33.023 11674 11769 W SearchServiceCore: Abort, client detached.
09-27 19:43:33.026 11674 11769 I StreamController: cleanUpControllerScope(nowcards-15-78135d-d065)
09-27 19:43:33.031 11674 11769 W SearchServiceCore: Abort, client detached.
09-27 19:43:33.034 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9007, L: 0, D: 1285496964, C: false, I: true, N: 2
09-27 19:43:33.035 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9008, L: 0, D: 83657722, C: true, I: true, N: 2
09-27 19:43:33.036 30266 30266 I Finsky  : [2] zkw.a(29): SCH: Scheduling job Id: 9009, L: 32668211, D: 33568211, C: false, I: false, N: 0
09-27 19:43:33.037   692   706 I system_server: Background concurrent copying GC freed 285457(12MB) AllocSpace objects, 51(3440KB) LOS objects, 49% free, 22MB/45MB, paused 854us total 1.165s
09-27 19:43:33.062   692   747 W SearchableInfo: Invalid searchable metadata for com.paypal.android.p2pmobile/com.paypal.android.foundation.presentation.activity.DeveloperConfigRcsFlagsActivity: Search label must be a resource reference.
09-27 19:43:33.070  4359  4416 I python  : Initialized python
09-27 19:43:33.070  4359  4416 I python  : AND: Init threads
09-27 19:43:33.071  4359  4416 I python  : testing python print redirection
09-27 19:43:33.077  4359  4416 I python  : Android path ['.', '/data/user/0/org.test.weatherstation/files/app/_python_bundle/stdlib.zip', '/data/user/0/org.test.weatherstation/files/app/_python_bundle/modules', '/data/user/0/org.test.weatherstation/files/app/_python_bundle/site-packages']
09-27 19:43:33.078  4359  4416 I python  : os.environ is environ({'PATH': '/sbin:/system/sbin:/product/bin:/apex/com.android.runtime/bin:/system/bin:/system/xbin:/odm/bin:/vendor/bin:/vendor/xbin', 'ANDROID_BOOTLOGO': '1', 'ANDROID_ROOT': '/system', 'ANDROID_ASSETS': '/system/app', 'ANDROID_DATA': '/data', 'ANDROID_STORAGE': '/storage', 'ANDROID_RUNTIME_ROOT': '/apex/com.android.runtime', 'ANDROID_TZDATA_ROOT': '/apex/com.android.tzdata', 'EXTERNAL_STORAGE': '/sdcard', 'ASEC_MOUNTPOINT': '/mnt/asec', 'BOOTCLASSPATH': '/apex/com.android.runtime/javalib/core-oj.jar:/apex/com.android.runtime/javalib/core-libart.jar:/apex/com.android.runtime/javalib/okhttp.jar:/apex/com.android.runtime/javalib/bouncycastle.jar:/apex/com.android.runtime/javalib/apache-xml.jar:/system/framework/framework.jar:/system/framework/ext.jar:/system/framework/telephony-common.jar:/system/framework/voip-common.jar:/system/framework/ims-common.jar:/system/framework/android.test.base.jar:/apex/com.android.conscrypt/javalib/conscrypt.jar:/apex/com.android.media/javalib/updatable-media.jar', 'DEX2OATBOOTCLASSPATH': '/apex/com.android.runtime/javalib/core-oj.jar:/apex/com.android.runtime/javalib/core-libart.jar:/apex/com.android.runtime/javalib/okhttp.jar:/apex/com.android.runtime/javalib/bouncycastle.jar:/apex/com.android.runtime/javalib/apache-xml.jar:/system/framework/framework.jar:/system/framework/ext.jar:/system/framework/telephony-common.jar:/system/framework/voip-common.jar:/system/framework/ims-common.jar:/system/framework/android.test.base.jar', 'SYSTEMSERVERCLASSPATH': '/system/framework/org.lineageos.platform.jar:/system/framework/services.jar:/system/framework/ethernet-service.jar:/system/framework/wifi-service.jar:/system/framework/com.android.location.provider.jar', 'DOWNLOAD_CACHE': '/data/cache', 'TERMINFO': '/system/etc/terminfo', 'ANDROID_SOCKET_zygote': '20', 'ANDROID_SOCKET_usap_pool_primary': '21', 'ANDROID_ENTRYPOINT': 'main.pyc', 'ANDROID_ARGUMENT': '/data/user/0/org.test.weatherstation/files/app', 'ANDROID_APP_PATH': '/data/user/0/org.test.weatherstation/files/app', 'ANDROID_PRIVATE': '/data/user/0/org.test.weatherstation/files', 'ANDROID_UNPACK': '/data/user/0/org.test.weatherstation/files/app', 'PYTHONHOME': '/data/user/0/org.test.weatherstation/files/app', 'PYTHONPATH': '/data/user/0/org.test.weatherstation/files/app:/data/user/0/org.test.weatherstation/files/app/lib', 'PYTHONOPTIMIZE': '2', 'P4A_BOOTSTRAP': 'SDL2', 'PYTHON_NAME': 'python', 'P4A_IS_WINDOWED': 'True', 'P4A_ORIENTATION': 'portrait', 'P4A_NUMERIC_VERSION': 'None', 'P4A_MINSDK': '21', 'LC_CTYPE': 'C.UTF-8'})
09-27 19:43:33.078  4359  4416 I python  : Android kivy bootstrap done. __name__ is __main__
09-27 19:43:33.078  4359  4416 I python  : AND: Ran string
09-27 19:43:33.078  4359  4416 I python  : Run user program, change dir and execute entrypoint
09-27 19:43:33.083  3777  3795 I gle.android.gm: Background young concurrent copying GC freed 50492(3349KB) AllocSpace objects, 5(164KB) LOS objects, 22% free, 11MB/14MB, paused 211us total 158.992ms
09-27 19:43:33.085   274  4426 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
09-27 19:43:33.093  3777  3009 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0
09-27 19:43:33.093  3777  5307 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=null serviceId=30
09-27 19:43:33.094   692   747 I ActivityTaskManager: Displayed org.test.weatherstation/org.kivy.android.PythonActivity: +864ms
09-27 19:43:33.110  3777  3009 I Icing   : Indexing com.google.android.gms-internal.3p:MobileApplication from com.google.android.gms using seqno 216
09-27 19:43:33.115  3777  3009 I Icing   : Indexing com.google.android.gms-internal.3p:MobileApplication from com.google.android.gms using seqno 216
09-27 19:43:33.157  3777  8293 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
09-27 19:43:33.157  3777  8293 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@203615036@20.36.15 (120308-333172415):2)
09-27 19:43:33.158  3777  8293 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@203615036@20.36.15 (120308-333172415):0)
09-27 19:43:33.150  4416  4416 W SDLThread: type=1400 audit(0.0:1746): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/_heapq.cpython-38.so" dev="mmcblk0p28" ino=280463 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:33.189  3777  3009 I Icing   : Indexing com.google.android.gms-apps from com.google.android.gms
09-27 19:43:33.221  3777  8293 W Conscrypt: Could not set socket write timeout: java.net.SocketException: Socket closed
09-27 19:43:33.221  3777  8293 W Conscrypt:     at com.google.android.gms.org.conscrypt.Platform.setSocketWriteTimeout(:com.google.android.gms@203615036@20.36.15 (120308-333172415):2)
09-27 19:43:33.221  3777  8293 W Conscrypt:     at com.google.android.gms.org.conscrypt.ConscryptFileDescriptorSocket.setSoWriteTimeout(:com.google.android.gms@203615036@20.36.15 (120308-333172415):0)
09-27 19:43:33.240  4416  4416 W SDLThread: type=1400 audit(0.0:1747): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/math.cpython-38.so" dev="mmcblk0p28" ino=280449 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:33.243  4416  4416 W SDLThread: type=1400 audit(0.0:1748): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/_queue.cpython-38.so" dev="mmcblk0p28" ino=280442 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:33.297  4416  4416 W SDLThread: type=1400 audit(0.0:1749): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/_bisect.cpython-38.so" dev="mmcblk0p28" ino=280451 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:33.300  4416  4416 W SDLThread: type=1400 audit(0.0:1750): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/_sha512.cpython-38.so" dev="mmcblk0p28" ino=280424 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:33.300  4416  4416 W SDLThread: type=1400 audit(0.0:1751): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/_random.cpython-38.so" dev="mmcblk0p28" ino=280474 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:33.327  4416  4416 W SDLThread: type=1400 audit(0.0:1752): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/modules/_opcode.cpython-38.so" dev="mmcblk0p28" ino=280476 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:33.398  4359  4416 I python  : [INFO   ] [Logger      ] Record log in /data/user/0/org.test.weatherstation/files/app/.kivy/logs/kivy_20-09-27_24.txt
09-27 19:43:33.398  4359  4416 I python  : [INFO   ] [Kivy        ] v1.11.1
09-27 19:43:33.399  4359  4416 I python  : [INFO   ] [Kivy        ] Installed at "/data/user/0/org.test.weatherstation/files/app/_python_bundle/site-packages/kivy/__init__.pyc"
09-27 19:43:33.399  4359  4416 I python  : [INFO   ] [Python      ] v3.8.1 (default, Sep 26 2020, 23:31:09) 
09-27 19:43:33.399  4359  4416 I python  : [Clang 8.0.2 (https://android.googlesource.com/toolchain/clang 40173bab62ec7462
09-27 19:43:33.400  4359  4416 I python  : [INFO   ] [Python      ] Interpreter at ""
09-27 19:43:33.402  3777  3009 I GmsCoreXrpcWrapper: Returning a channel provider with trafficStatsTag=12803
09-27 19:43:33.411  4359  4416 I python  : [INFO   ] [Factory     ] 184 symbols loaded
09-27 19:43:33.427 11674 11833 W earchbox:searc: resources.arsc in APK '/data/app/com.facebook.katana-w7OePj8wVXH0r_S2Q4lr6g==/base.apk' is compressed.
09-27 19:43:33.480  3777  3009 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0
09-27 19:43:33.491  3777  3009 I Icing   : Indexing done com.google.android.gms-apps
09-27 19:43:33.492  3777  5307 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=null serviceId=36
09-27 19:43:33.495 11674 11833 W earchbox:searc: resources.arsc in APK '/data/app/com.facebook.orca-b7zzS94Es3CBrjkdyadyMw==/base.apk' is compressed.
09-27 19:43:33.528  3777  3009 I Icing   : Indexing com.google.android.gms-apps from com.google.android.gms
09-27 19:43:33.540  3777  3009 I Icing   : Indexing done com.google.android.gms-apps
09-27 19:43:33.545  3777  3795 I gle.android.gm: Background young concurrent copying GC freed 29370(2205KB) AllocSpace objects, 15(836KB) LOS objects, 15% free, 12MB/14MB, paused 162us total 103.343ms
09-27 19:43:33.549  3777  3009 I GmsCoreXrpcWrapper: Returning a channel provider with trafficStatsTag=12803
09-27 19:43:33.569  3777  3009 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0
09-27 19:43:33.656 11674 11833 W earchbox:searc: resources.arsc in APK '/data/app/com.instagram.android-QIO-lTCtJdDos2rDAHpR_g==/base.apk' is compressed.
09-27 19:43:34.085 11674  4353 I A       : Writing data of size=377 bytes with N=1 keys to Geller corpus DEVICE_INSTALLED_APPS at ts=1601228614084000
09-27 19:43:34.111 11674 11819 W DeviceAppInfoWork: missing version info.
09-27 19:43:35.360  4416  4416 W SDLThread: type=1400 audit(0.0:1763): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/site-packages/kivy/properties.so" dev="mmcblk0p28" ino=303411 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:35.363  4416  4416 W SDLThread: type=1400 audit(0.0:1764): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/site-packages/kivy/_event.so" dev="mmcblk0p28" ino=303418 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:35.843  4416  4416 W SDLThread: type=1400 audit(0.0:1765): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/site-packages/kivy/graphics/instructions.so" dev="mmcblk0p28" ino=303548 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:35.847  4416  4416 W SDLThread: type=1400 audit(0.0:1766): avc: granted { execute } for path="/data/data/org.test.weatherstation/files/app/_python_bundle/site-packages/kivy/graphics/buffer.so" dev="mmcblk0p28" ino=303549 scontext=u:r:untrusted_app_27:s0:c512,c768 tcontext=u:object_r:app_data_file:s0:c512,c768 tclass=file app=org.test.weatherstation
09-27 19:43:35.939  4359  4416 I python  : [INFO   ] [Image       ] Providers: img_tex, img_dds, img_sdl2, img_gif (img_pil, img_ffpyplayer ignored)
09-27 19:43:35.998  4359  4416 I python  : [INFO   ] [KivyMD      ] v0.104.1
09-27 19:43:36.074  4359  4416 I python  : [INFO   ] [Window      ] Provider: sdl2
09-27 19:43:36.116  4359  4416 E libEGL  : validate_display:91 error 3008 (EGL_BAD_DISPLAY)
09-27 19:43:36.118  4359  4416 V SDL     : setOrientation() orientation=-1 width=800 height=600 resizable=true hint=
09-27 19:43:36.122  4359  4416 W Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:607>: EGL_BAD_ATTRIBUTE
09-27 19:43:36.122   692   762 V DisplayPowerController: Brightness [255] reason changing to: 'manual', previous reason: 'manual [ dim ]'.
09-27 19:43:36.136  4359  4416 I python  : [INFO   ] [GL          ] Using the "OpenGL ES 2" graphics system
09-27 19:43:36.139  4359  4416 I python  : [INFO   ] [GL          ] Backend used <sdl2>
09-27 19:43:36.140  4359  4416 I python  : [INFO   ] [GL          ] OpenGL version <b'OpenGL ES 3.0 V@140.0 AU@ (GIT@I741a3d36ca)'>
09-27 19:43:36.140  4359  4416 I python  : [INFO   ] [GL          ] OpenGL vendor <b'Qualcomm'>
09-27 19:43:36.141  4359  4416 I python  : [INFO   ] [GL          ] OpenGL renderer <b'Adreno (TM) 330'>
09-27 19:43:36.141  4359  4416 I python  : [INFO   ] [GL          ] OpenGL parsed version: 3, 0
09-27 19:43:36.142  4359  4416 I python  : [INFO   ] [GL          ] Texture max size <4096>
09-27 19:43:36.142  4359  4416 I python  : [INFO   ] [GL          ] Texture max units <16>
09-27 19:43:36.188  4359  4416 I python  : [INFO   ] [Window      ] auto add sdl2 input provider
09-27 19:43:36.190  4359  4416 I python  : [INFO   ] [Window      ] virtual keyboard not allowed, single mode, not docked
09-27 19:43:36.208  4359  4416 I python  : [INFO   ] [Text        ] Provider: sdl2
09-27 19:43:36.495  4359  4416 I python  : [INFO   ] [GL          ] NPOT texture support is available
09-27 19:43:37.883  4359  4416 I python  : [WARNING] [Base        ] Unknown <android> provider
09-27 19:43:37.884  4359  4416 I python  : [INFO   ] [Base        ] Start application main loop
09-27 19:43:38.228  4359  4416 I python  : [INFO   ] [Base        ] Leaving application in progress...
09-27 19:43:38.229  4359  4416 I python  :  Traceback (most recent call last):
09-27 19:43:38.229  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/app/main.py", line 38, in <module>
09-27 19:43:38.231  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/app.py", line 855, in run
09-27 19:43:38.233  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/base.py", line 504, in runTouchApp
09-27 19:43:38.233  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/core/window/window_sdl2.py", line 747, in mainloop
09-27 19:43:38.234  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/core/window/window_sdl2.py", line 479, in _mainloop
09-27 19:43:38.235  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/base.py", line 339, in idle
09-27 19:43:38.235  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/clock.py", line 591, in tick
09-27 19:43:38.236  4359  4416 I python  :    File "kivy/_clock.pyx", line 384, in kivy._clock.CyClockBase._process_events
09-27 19:43:38.237  4359  4416 I python  :    File "kivy/_clock.pyx", line 414, in kivy._clock.CyClockBase._process_events
09-27 19:43:38.237  4359  4416 I python  :    File "kivy/_clock.pyx", line 412, in kivy._clock.CyClockBase._process_events
09-27 19:43:38.238  4359  4416 I python  :    File "kivy/_clock.pyx", line 154, in kivy._clock.ClockEvent.tick
09-27 19:43:38.239  4359  4416 I python  :    File "kivy/_clock.pyx", line 86, in kivy._clock.ClockEvent.get_callback
09-27 19:43:38.239  4359  4416 I python  :    File "/home/ric/Documents/Android_App/app_android/.buildozer/android/platform/build-armeabi-v7a/build/python-installs/weatherStation/kivy/weakmethod.py", line 56, in is_dead
09-27 19:43:38.240  4359  4416 I python  :  ReferenceError: weakly-referenced object no longer exists
09-27 19:43:38.241  4359  4416 I python  : Python for android ended.
09-27 19:43:38.517   692  3831 I WindowManager: WIN DEATH: Window{85386f u0 org.test.weatherstation/org.kivy.android.PythonActivity}
09-27 19:43:38.518   692  3801 I qti_sensors_hal: LIS3DH Accelerometer: batch  15.00  10.00
09-27 19:43:38.518   692  3837 I ActivityManager: Process org.test.weatherstation (pid 4359) has died: fore TOP 
09-27 19:43:38.522   692  3837 W ActivityTaskManager: Force removing ActivityRecord{4357fd5 u0 org.test.weatherstation/org.kivy.android.PythonActivity t399}: app died, no saved state
09-27 19:43:38.534   275   275 I Zygote  : Process 4359 exited cleanly (255)
09-27 19:43:38.550   692   736 W ActivityManager: setHasOverlayUi called on unknown pid: 4359
09-27 19:43:38.563   692   750 I libprocessgroup: Successfully killed process cgroup uid 10233 pid 4359 in 44ms
09-27 19:43:38.568  2628  3955 W Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:607>: EGL_BAD_ATTRIBUTE
09-27 19:43:38.585 11674 16105 W Adreno-EGL: <qeglDrvAPI_eglGetConfigAttrib:607>: EGL_BAD_ATTRIBUTE
09-27 19:43:38.606  2274  2274 D ImageWallpaper: wallpaper visibility changes to: true
09-27 19:43:38.632 11674 11769 W ThreadPoolDumper: Queue length for executor EventBus is now 11. Perhaps some tasks are too long, or the pool is too small.
09-27 19:43:38.641 11674 11832 W LocationOracle: No location history returned by ContextManager
09-27 19:43:38.682  3047  4716 W GCoreFlp: No location to return for getLastLocation()
09-27 19:43:38.694 11674 11824 W LocationOracle: No location returned by GMS core getLastLocation()
09-27 19:43:38.695 11674 11769 I StreamController: registerScope: nowcards-15-78135d-d065
09-27 19:43:38.789 11674 11674 I BgTaskExecutorImpl: Starting EXCLUSIVE background task TNG_MINUS_ONE_SYNC.
09-27 19:43:38.790 11674 11674 I BgTaskExecutorImpl: Starting EXCLUSIVE background task TNG_VOICE_SEARCH_SYNC.
09-27 19:43:38.800 11674 11833 E MDD     : DownloadProgressMonitor: Can't find file for uri: android://com.google.android.googlequicksearchbox/files/sharedminusonemodule/shared/SharedMinusOneData.pb.tmp
09-27 19:43:38.806 11674 11769 I TngMinusOneSync: Syncing TNG:-1
09-27 19:43:38.807 11674 11769 I TngVoiceSearchSync: Syncing TNG:VoiceSearch
^CTraceback (most recent call last):
  File "/home/ric/Documents/Android_App/app_android/bin/buildozer", line 8, in <module>
    sys.exit(main())
  File "/home/ric/Documents/Android_App/app_android/lib/python3.8/site-packages/buildozer/scripts/client.py", line 13, in main
    Buildozer().run_command(sys.argv[1:])
  File "/home/ric/Documents/Android_App/app_android/lib/python3.8/site-packages/buildozer/__init__.py", line 1047, in run_command
    self.target.run_commands(args)
  File "/home/ric/Documents/Android_App/app_android/lib/python3.8/site-packages/buildozer/target.py", line 92, in run_commands
    func(args)
  File "/home/ric/Documents/Android_App/app_android/lib/python3.8/site-packages/buildozer/targets/android.py", line 1361, in cmd_logcat
    self.buildozer.cmd('{adb} logcat {filters}'.format(adb=self.adb_cmd,
  File "/home/ric/Documents/Android_App/app_android/lib/python3.8/site-packages/buildozer/__init__.py", line 302, in cmd
    readx = select.select([fd_stdout, fd_stderr], [], [])[0]
KeyboardInterrupt
HeaTTheatR commented 3 years ago

https://github.com/kivymd/KivyMD/blob/master/demos/kitchen_sink/buildozer.spec#L29

Снимок экрана 2020-09-27 в 20 45 27

Rickyc81 commented 3 years ago

it's easy to write "closed" guys This is my .spec, kivy is Kivy: kivy==2.0.0rc3 ( as I wrote in the description that you surely have not read)

This is my env, and i have never installed kivy 1. So the problem is not mine, if buildozer sees a kivy 1 that i have never installed tell me what to do?

ric@RicUbuntu:~/Documents/Android_App/app_android$ source /home/ric/Documents/Android_App/app_android/bin/activate
(app_android) ric@RicUbuntu:~/Documents/Android_App/app_android$ pip3 list
Package            Version    
------------------ -----------
appdirs            1.4.4      
astroid            2.4.2      
buildozer          1.2.0      
certifi            2020.4.5.2 
chardet            3.0.4      
colorama           0.4.3      
ctypes-callable    1.0.0.post2
Cython             0.29.20    
distlib            0.3.0      
docutils           0.16       
filelock           3.0.12     
idna               2.9        
importlib-metadata 1.6.1      
isort              5.5.3      
Jinja2             2.11.2     
Kivy               2.0.0rc3   
Kivy-Garden        0.1.4      
kivymd             0.104.1    
lazy-object-proxy  1.4.3      
MarkupSafe         1.1.1      
mccabe             0.6.1      
pep517             0.6.0      
pexpect            4.8.0      
Pillow             7.1.2      
pip                20.0.2     
pkg-resources      0.0.0      
ptyprocess         0.6.0      
Pygments           2.6.1      
pylint             2.6.0      
pytoml             0.1.21     
requests           2.24.0     
setuptools         44.0.0     
sh                 1.13.1     
six                1.15.0     
toml               0.10.1     
urllib3            1.25.9     
virtualenv         20.0.23    
wrapt              1.12.1     
zipp               3.1.0 
[app]

# (str) Title of your application
title = WeatherStation

# (str) Package name
package.name = weatherStation

# (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
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==3.8.2,hostpython3==3.8.2,kivy==2.0.0rc3,https://github.com/kivymd/KivyMD/archive/master.zip,sdl2_ttf==2.0.15

# (str) Custom source folders for requirements
# Sets custom source for any requirements with recipes
# requirements.source.kivy = ../../kivy

# (str) Presplash of the application
presplash.filename = circle-cropped_logo.png

# (str) Icon of the application
icon.filename = circle-cropped_logo.png

# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
orientation = portrait

# (list) List of service to declare
#services = NAME:ENTRYPOINT_TO_PY,NAME2:ENTRYPOINT2_TO_PY

#
# OSX Specific
#

#
# author = © Copyright Info

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

# Kivy version to use
osx.kivy_version = 1.9.1

#
# Android specific
#

# (bool) Indicate if the application should be fullscreen or not
fullscreen = 0

# (string) Presplash background color (for android toolchain)
# Supported formats are: #RRGGBB #AARRGGBB or one of the following names:
# red, blue, green, black, white, gray, cyan, magenta, yellow, lightgray,
# darkgray, grey, lightgrey, darkgrey, aqua, fuchsia, lime, maroon, navy,
# olive, purple, silver, teal.
android.presplash_color = #FFFFFF

# (string) Presplash animation using Lottie format.
# see https://lottiefiles.com/ for examples and https://airbnb.design/lottie/
# for general documentation.
# Lottie files can be created using various tools, like Adobe After Effect or Synfig.
#android.presplash_lottie = "path/to/lottie/file.json"

# (list) Permissions
android.permissions = INTERNET

# (int) Target Android API, should be as high as possible.
#android.api = 27

# (int) Minimum API your APK will support.
#android.minapi = 21

# (int) Android SDK version to use
#android.sdk = 20

# (str) Android NDK version to use
#android.ndk = 19b

# (int) Android NDK API to use. This is the minimum API your app will support, it should usually match android.minapi.
#android.ndk_api = 21

# (bool) Use --private data storage (True) or --dir public storage (False)
#android.private_storage = True

# (str) Android NDK directory (if empty, it will be automatically downloaded.)
#android.ndk_path =

# (str) Android SDK directory (if empty, it will be automatically downloaded.)
#android.sdk_path =

# (str) ANT directory (if empty, it will be automatically downloaded.)
#android.ant_path =

# (bool) If True, then skip trying to update the Android sdk
# This can be useful to avoid excess Internet downloads or save time
# when an update is due and you just want to test/build your package
# android.skip_update = False

# (bool) If True, then automatically accept SDK license
# agreements. This is intended for automation only. If set to False,
# the default, you will be shown the license when first running
# buildozer.
# android.accept_sdk_license = False

# (str) Android entry point, default is ok for Kivy-based app
#android.entrypoint = org.renpy.android.PythonActivity

# (str) Android app theme, default is ok for Kivy-based app
# android.apptheme = "@android:style/Theme.NoTitleBar"

# (list) Pattern to whitelist for the whole project
#android.whitelist =

# (str) Path to a custom whitelist file
#android.whitelist_src =

# (str) Path to a custom blacklist file
#android.blacklist_src =

# (list) List of Java .jar files to add to the libs so that pyjnius can access
# their classes. Don't add jars that you do not need, since extra jars can slow
# down the build process. Allows wildcards matching, for example:
# OUYA-ODK/libs/*.jar
#android.add_jars = foo.jar,bar.jar,path/to/more/*.jar

# (list) List of Java files to add to the android project (can be java or a
# directory containing the files)
#android.add_src =

# (list) Android AAR archives to add (currently works only with sdl2_gradle
# bootstrap)
#android.add_aars =

# (list) Gradle dependencies to add (currently works only with sdl2_gradle
# bootstrap)
#android.gradle_dependencies =

# (list) add java compile options
# this can for example be necessary when importing certain java libraries using the 'android.gradle_dependencies' option
# see https://developer.android.com/studio/write/java8-support for further information
# android.add_compile_options = "sourceCompatibility = 1.8", "targetCompatibility = 1.8"

# (list) Gradle repositories to add {can be necessary for some android.gradle_dependencies}
# please enclose in double quotes 
# e.g. android.gradle_repositories = "maven { url 'https://kotlin.bintray.com/ktor' }"
#android.add_gradle_repositories =

# (list) packaging options to add 
# see https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.PackagingOptions.html
# can be necessary to solve conflicts in gradle_dependencies
# please enclose in double quotes 
# e.g. android.add_packaging_options = "exclude 'META-INF/common.kotlin_module'", "exclude 'META-INF/*.kotlin_module'"
#android.add_gradle_repositories =

# (list) Java classes to add as activities to the manifest.
#android.add_activities = com.example.ExampleActivity

# (str) OUYA Console category. Should be one of GAME or APP
# If you leave this blank, OUYA support will not be enabled
#android.ouya.category = GAME

# (str) Filename of OUYA Console icon. It must be a 732x412 png image.
#android.ouya.icon.filename = %(source.dir)s/data/ouya_icon.png

# (str) XML file to include as an intent filters in <activity> tag
#android.manifest.intent_filters =

# (str) launchMode to set for the main activity
#android.manifest.launch_mode = standard

# (list) Android additional libraries to copy into libs/armeabi
#android.add_libs_armeabi = libs/android/*.so
#android.add_libs_armeabi_v7a = libs/android-v7/*.so
#android.add_libs_arm64_v8a = libs/android-v8/*.so
#android.add_libs_x86 = libs/android-x86/*.so
#android.add_libs_mips = libs/android-mips/*.so

# (bool) Indicate whether the screen should stay on
# Don't forget to add the WAKE_LOCK permission if you set this to True
#android.wakelock = False

# (list) Android application meta-data to set (key=value format)
#android.meta_data =

# (list) Android library project to add (will be added in the
# project.properties automatically.)
#android.library_references =

# (list) Android shared libraries which will be added to AndroidManifest.xml using <uses-library> tag
#android.uses_library =

# (str) Android logcat filters to use
#android.logcat_filters = *:S python:D

# (bool) Copy library instead of making a libpymodules.so
#android.copy_libs = 1

# (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64
android.arch = armeabi-v7a

# (int) overrides automatic versionCode computation (used in build.gradle)
# this is not the same as app version and should only be edited if you know what you're doing
# android.numeric_version = 1

# (bool) enables Android auto backup feature (Android API >=23)
android.allow_backup = True

#
# Python for android (p4a) specific
#

# (str) python-for-android fork to use, defaults to upstream (kivy)
#p4a.fork = kivy

# (str) python-for-android branch to use, defaults to master
#p4a.branch = master

# (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
#p4a.source_dir =

# (str) The directory in which python-for-android should look for your own build recipes (if any)
#p4a.local_recipes =

# (str) Filename to the hook for p4a
#p4a.hook =

# (str) Bootstrap to use for android builds
# p4a.bootstrap = sdl2

# (int) port number to specify an explicit --port= p4a argument (eg for bootstrap flask)
#p4a.port =

# Control passing the --use-setup-py vs --ignore-setup-py to p4a
# "in the future" --use-setup-py is going to be the default behaviour in p4a, right now it is not
# Setting this to false will pass --ignore-setup-py, true will pass --use-setup-py
# NOTE: this is general setuptools integration, having pyproject.toml is enough, no need to generate
# setup.py if you're using Poetry, but you need to add "toml" to source.include_exts.
#p4a.setup_py = false

#
# iOS specific
#

# (str) Path to a custom kivy-ios folder
#ios.kivy_ios_dir = ../kivy-ios
# Alternately, specify the URL and branch of a git checkout:
ios.kivy_ios_url = https://github.com/kivy/kivy-ios
ios.kivy_ios_branch = master

# Another platform dependency: ios-deploy
# Uncomment to use a custom checkout
#ios.ios_deploy_dir = ../ios_deploy
# Or specify URL and branch
ios.ios_deploy_url = https://github.com/phonegap/ios-deploy
ios.ios_deploy_branch = 1.10.0

# (bool) Whether or not to sign the code
ios.codesign.allowed = false

# (str) Name of the certificate to use for signing the debug version
# Get a list of available identities: buildozer ios list_identities
#ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"

# (str) Name of the certificate to use for signing the release version
#ios.codesign.release = %(ios.codesign.debug)s

[buildozer]

# (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
log_level = 2

# (int) Display warning if buildozer is run as root (0 = False, 1 = True)
warn_on_root = 1

# (str) Path to build artifact storage, absolute or relative to spec file
# build_dir = ./.buildozer

# (str) Path to build output (i.e. .apk, .ipa) storage
# bin_dir = ./bin

#    -----------------------------------------------------------------------------
#    List as sections
#
#    You can define all the "list" as [section:key].
#    Each line will be considered as a option to the list.
#    Let's take [app] / source.exclude_patterns.
#    Instead of doing:
#
#[app]
#source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
#
#    This can be translated into:
#
#[app:source.exclude_patterns]
#license
#data/audio/*.wav
#data/images/original/*
#

#    -----------------------------------------------------------------------------
#    Profiles
#
#    You can extend section / key with a profile
#    For example, you want to deploy a demo version of your application without
#    HD content. You could first change the title to add "(demo)" in the name
#    and extend the excluded directories to remove the HD content.
#
#[app@demo]
#title = My Application (demo)
#
#[app:source.exclude_patterns@demo]
#images/hd/*
#
#    Then, invoke the command line with the "demo" profile:
#
#buildozer --profile demo android debug
Rickyc81 commented 3 years ago

This is my GLOBAL pip3 list

ric@RicUbuntu:~$ pip3 list
Package                 Version             
----------------------- --------------------
appdirs                 1.4.4               
apturl                  0.5.2               
asn1crypto              0.24.0              
astroid                 2.4.2               
bcrypt                  3.1.7               
blinker                 1.4                 
Brlapi                  0.7.0               
buildozer               1.2.0.dev0          
certifi                 2019.11.28          
chardet                 3.0.4               
chrome-gnome-shell      0.0.0               
Click                   7.0                 
colorama                0.4.3               
command-not-found       0.3                 
cryptography            2.8                 
cupshelpers             1.0                 
dbus-python             1.2.16              
decorator               4.4.2               
defer                   1.0.6               
distlib                 0.3.1               
distro                  1.4.0               
distro-info             0.23ubuntu1         
docutils                0.16                
duplicity               0.8.12.0            
entrypoints             0.3                 
fasteners               0.14.1              
filelock                3.0.12              
future                  0.18.2              
httplib2                0.14.0              
idna                    2.8                 
isort                   5.5.2               
keyring                 18.0.1              
Kivy                    2.0.0rc3            
Kivy-Garden             0.1.4               
language-selector       0.1                 
launchpadlib            1.10.13             
lazr.restfulclient      0.14.2              
lazr.uri                1.0.3               
lazy-object-proxy       1.4.3               
lockfile                0.12.2              
louis                   3.12.0              
macaroonbakery          1.3.1               
Mako                    1.1.0               
MarkupSafe              1.1.0               
mccabe                  0.6.1               
monotonic               1.5                 
netifaces               0.10.4              
oauthlib                3.1.0               
olefile                 0.46                
onboard                 1.4.1               
paramiko                2.6.0               
pexpect                 4.6.0               
Pillow                  7.0.0               
pip                     20.0.2              
protobuf                3.6.1               
psutil                  5.5.1               
pycairo                 1.16.2              
pycups                  1.9.73              
Pygments                2.7.1               
PyGObject               3.36.0              
pyinotify               0.9.6               
PyJWT                   1.7.1               
pylint                  2.6.0               
pymacaroons             0.13.0              
PyNaCl                  1.3.0               
pyRFC3339               1.1                 
python-apt              2.0.0+ubuntu0.20.4.1
python-dateutil         2.7.3               
python-debian           0.1.36ubuntu1       
python-pam              1.8.4               
python-telegram-bot     12.8                
python-xapp             1.8.1               
python-xlib             0.23                
pytz                    2019.3              
pyxdg                   0.26                
PyYAML                  5.3.1               
reportlab               3.5.34              
requests                2.22.0              
requests-unixsocket     0.2.0               
screen-resolution-extra 0.0.0               
SecretStorage           2.3.1               
setproctitle            1.1.10              
setuptools              45.2.0              
sh                      1.14.0              
simplejson              3.16.0              
six                     1.14.0              
ssh-import-id           5.10                
systemd-python          234                 
tinycss                 0.4                 
toml                    0.10.1              
tornado                 6.0.4               
ubuntu-advantage-tools  20.3                
ubuntu-drivers-common   0.0.0               
ufw                     0.36                
unattended-upgrades     0.1                 
urllib3                 1.25.8              
usb-creator             0.3.7               
virtualenv              20.0.31             
wadllib                 1.3.3               
wheel                   0.34.2              
wrapt                   1.12.1              
xkit                    0.0.0  
HeaTTheatR commented 3 years ago

@Rickyc81 I showed what your problem is. It problem is not related with the KivyMD library. Your indignation is absolutely groundless! If you are unable to build a package with a specific version of dependencies, where does the KivyMD team have to do with it?

Rickyc81 commented 3 years ago

OK thanks anyway. I thought I was the kivy repo, sorry guys

podraco commented 3 years ago

We really need to change the image of the project, it's too similar to kivy. Even I have sometimes mistaken the kivy repo from the kivymd one.