Taifun
July 17, 2025, 5:46pm
1158
which time picker value did you try?
what is the timer interval you got displayed in Label3?
for debugging use logcat
ADB is a command-line utility that that can be used to control your device over USB from a computer. It will allow you to install / uninstall and or view logs on your device. This could be very handy when there are issues with a specific app and you like to view the logs for information that may lead to identify the cause of error.
In this post, weβll discuss how to install and use ADB.
Installation:
ADB comes with Android SDK. However, you can download ONLY the ADB files from HERE .
EDIT: β¦
EDIT: for an alarm example with itoo you also can try this
The aia file aims to create an alarm system based on a background system created with Itoo.
Reliability is maximum and it will always notify us exactly at the hour and minute marked as the alarm.
The app would manage the service, auto-starting when there are pending alarms and closing when there are no pending alarms in the database.
The application uses the following components
[componentes]
The aia consists of two parts:
1.- The Activity part
2.- The Service Part
1. In the activity parβ¦
btw. usually you would use the alarmmanager feature of your Android device, which does not require to display a persistent notification... the Android system just will trigger your app at the given time "magically"... you coule use my paid alarmmanager extension for this...
I tested the alarmmanager2.apk on some of my test devices.
It works on:
Pixel 2XL (Android 11) β works
Galaxy Note8 (Android 9) β works
Xiaomi Redmi Note 5 (Android 9) β works
Nexus 5x (Android 8.1) β works
Galaxy A3 (2017) (Android 8.0) β works
Galaxy S6 (Android 7) β works
Galaxy Note 3 (Android 5) β works
Does not work on:
Xiaomi Redmi Note 5 (Android 9) β doesn't work (also not in foreground)
(EDIT: Notifications were disabled, no idea why)
Galaxy S6 (Android 7) β doesn't work (alsoβ¦
Taifun