When I use any kind of clock, my mobile phone crash

Hello,
My principal problem is that when I try to use any kind of clock in my app, my app crash.

Firstly, I used the clock component to do a delay in my project, but crash only for having the blocks of the component.

Secondly, I tried to use an extension called "SleepyHead", but, when a block of that component appear in the code, the app still crash.

I don't know if the problem is my mobile phone or if it is another thing. Someone can explain me a solution for that?

Is it updated version? Show us the download link for that extension.

Is it happening in aia or apk? APK mean pls use logcat to know the exact reason for the crash

Show your relevant blocks, especially where you attempt a delay in your project...

(mod edit - no need to tag users who have replied to your topic)
When I tried to use the clock component of app inventor, I use that blocks that appears in a video, and my app crash in the emulation (when I connected my mobile to the computer) and it crash when I tried to used the apk
image

Then, I used the extension. These blocks are the blocks I use for my project (ignore the animate component, because it's another extension and work well, EXCEPT FOR THE DELAY FUNCTION (I can't with that :sob:))
The link of the extension is that: GitHub - fvarrui/AppInventor-Extensions: Extensiones para App Inventor

Try putting a bunch of commas into your speech text where you want a pause in the speech, and drop the delay procedure and the extension.

Here is how to use a speech queue (list) to line up speech output to get everything said without interruption.


speech_queue.aia (21.6 KB)

You don't need to word file.

Just call the blabber procedure with whatever you need spoken, and also include the AfterSpeaking event and the global speech_queue empty list.

Here's a lite version, with your text:


speech_queue_lite.aia (2.9 KB)

If you need explicit timing, use a Clock Timer for your blabber calls.

But the problem is that when I used the clock timer my app crash in my phone. Moreover, I don't use any speech component

So what's this?

image

It's a video that explains how to do a delay function. Sorry if I didn't explain well.

Then try like so:

Use the delay to run one animation after another, it needs to be cumulative...