Skip to content
  • 0 Votes
    2 Posts
    2k Views
    K
    I think no way to do it from Qt directly, but you still have the choice to make it with android java code inside your Qt App ! the principle is simple, you insert your alarm management code (without any layout items, like buttons) in a java file inside a method, then you add the package name, then you put the Java file inside the src path (you will find it in ANDROID folder inside your Qt project folder), Now you have to call your Java method from the Qt side, this can be done easily if you understand this tuto: http://www.kdab.com/qt-android-episode-5/ You can make multiple methods, and transfer data between the two side (the Qt C++ and Android Java)