UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Call for testing: Ubuntu Touch 24.04-1.1

    Scheduled Pinned Locked Moved OS
    59 Posts 16 Posters 5.0k Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
      Reply
      • Reply as topic
      Log in to reply
      This topic has been deleted. Only users with topic management privileges can see it.
      • L Offline
        lk108 @Keli
        last edited by lk108

        @Keli said in Call for testing: Ubuntu Touch 24.04-1.1:

        ush notifications work - I tested with DeltaTouch

        However, clearing notifications does not work with DeltaTouch and 24.04-1.1 RC. We adapted to what we perceived as a change in the notifications DBus interface from focal to noble, but it seems this change is reverted in 24.04-1.1, so we need to revert as well, I assume.

        @peat_psuwit said in Call for testing: Ubuntu Touch 24.04-1.1:

        The Teleports update should not be needed for this to be fixed, at least in the specific case of Teleports.

        In xenial and focal, the clearPersistent DBus method of com.Lomiri.Postal required the appid and the tag as a string. In 24.04-1.0, the tag(s) had to be passed as array of strings. Is it correct that this has been reverted and tags are passed as strings instead of an array of strings to clearPersistent?

        K peat_psuwitP 2 Replies Last reply Reply Quote 0
        • K Offline
          Keli @lk108
          last edited by

          @lk108 said in Call for testing: Ubuntu Touch 24.04-1.1:

          However, clearing notifications does not work with DeltaTouch and 24.04-1.1 RC.

          Just tested this. I pushed the power button to turn my screen off, took another phone and sent myself random messages to my DeltaTouch, I heard the notification sounds and the screen turned itself on. I unlocked the phone and swiped down the screen to access the notifications indicator menu, I could see the Deltachat messages that I had sent to myself, I proceeded to click on the 'Clear all' button and said notifications were cleared. Is there something I'm missing?
          I'm on 24.04-1.1 RC 1

          L 1 Reply Last reply Reply Quote 0
          • L Offline
            lk108 @Keli
            last edited by

            @Keli It's not about the "Clear all" button, but about DeltaTouch removing the notification automatically, for example if you open a chat that contains the message for which a notification was sent.

            K 1 Reply Last reply Reply Quote 0
            • K Offline
              Keli @lk108
              last edited by

              @lk108 I see.. That makes sense now. Yes you are right, the notifications aren't automatically cleared after the messages are read.

              1 Reply Last reply Reply Quote 0
              • peat_psuwitP Offline
                peat_psuwit @lk108
                last edited by

                @lk108 said in Call for testing: Ubuntu Touch 24.04-1.1:

                In xenial and focal, the clearPersistent DBus method of com.Lomiri.Postal required the appid and the tag as a string. In 24.04-1.0, the tag(s) had to be passed as array of strings. Is it correct that this has been reverted and tags are passed as strings instead of an array of strings to clearPersistent?

                That's sort-of correct. The change is "reverted" - more accurately, we made it so that the change seems to be reverted for applications which clear 1 tag at a time (which most applications do).

                The full story is: originally, clearPersistent accepted not an appid and a tag, but an appid followed by an arbitrary amount of tags. Yes, for some reason, Canonical made the original clearPersistent accepts, for lack of better terms, "variadic arguments".

                But this is very unusual in the DBus ecosystem. When we first migrated lomiri-push-service, a Go code, to the new DBus library (godbus/dbus), we didn't notice this weird pattern and assumed that the function accepted a list. Once we noticed this, we attempted to restore it, only to discover that it's not simple to support "variadic arguments" using godbus/dbus.

                So we've decided on a compromise: we've discovered that, outside of our own code, most callers of clearPersistent pass only 1 tag to it. So, starting with 24.04-1.1, clearPersistent accepts exactly 1 appid and 1 tag, which should unbreak most unmodified applications. For those that actually pass multiple tags to clearPersistent, we now have clearPersistentList which accepts an appid followed by an array of tags.

                "Technically", this DBus API is private and applications are supposed to use Lomiri.PushNotifications QML type. In practice, there are applications which need to call this DBus API from C++ or Rust. So we want to maintain compatibility where it makes sense.

                This MR summarize the state of both functions in various versions of Ubuntu Touch, and also serves as an example on how one can support multiple versions of DBus methods.

                Side note: I see in DeltaTouch codebase that you call QSysInfo::productVersion(). Please note that this function (currently) returns the version of the underlying Ubuntu version and not necessarily the version of Ubuntu Touch. With the new release scheme, we could have multiple Ubuntu Touch (major) versions be based on the same Ubuntu version. Please use other kinds of detections (such as what we outlined in the MR) instead.

                L 1 Reply Last reply Reply Quote 2
                • peat_psuwitP Offline
                  peat_psuwit @gpatel-fr
                  last edited by

                  @gpatel-fr said in Call for testing: Ubuntu Touch 24.04-1.1:

                  @peat_psuwit said in Call for testing: Ubuntu Touch 24.04-1.1:

                  send file journal.log?

                  attached.
                  Note that I know why there are deny messages for ntp servers. It's the firewall on my installation (not ufw - a site firewall) blocking ntp for devices on wifi (these devices can only ping and https/https)
                  journal.log

                  Thank you for the log. While it gives me some information, unfortunately this log does not show the issue being reproduced. I'm going to include some changes in 24.04-1.2 which should makes this happen less often, but I won't be able to guarantee that it actually fixes the issue.

                  Since you mentioned NTP being blocked on your local network, it's probably worth mentioning that we currently don't use date & time given by cellular towers; the only way we can automatically set date & time is through NTP over either Wi-Fi or mobile data. Although in your case, I suspect that systemd-timesyncd (NTP client) doesn't react well with changing network conditions, which is why disabling and re-enabling mobile data doesn't help.

                  @adorsaz said in Call for testing: Ubuntu Touch 24.04-1.1:

                  On a Fairphone 4, I've migrated from daily build (19th October) to this RC, I confirm I am still able to use VoLTE to make a call.

                  Although I cannot send SMS to recipient with phone number formated with my country prefix (+41).
                  I share log here with redacted recipient phone number:

                  sms_send.log

                  Edit: during the day I was able to receive VoLTE call and receive SMS.

                  We're going to land a change that could help with this in tomorrow's 24.04-1.x daily image. If possible, please switch to 24.04-1.x daily channel and see if you can now send an SMS. If this is successful, we're going to have another RC image.

                  G adorsazA 2 Replies Last reply Reply Quote 0
                  • G Online
                    gpatel-fr @peat_psuwit
                    last edited by

                    @peat_psuwit said in Call for testing: Ubuntu Touch 24.04-1.1:

                    unfortunately this log does not show the issue being reproduced

                    yes it fixed itself without me doing anything for that. Looking at the systemd log files, I see that some are indeed dated from 1970 and some from July 2025 (I got the file at end of October), it's a bit difficult to make something from logs in this situation (not sure that journalctl is handling this well)

                    @peat_psuwit said in Call for testing: Ubuntu Touch 24.04-1.1:

                    we currently don't use date & time given by cellular towers; the only way we can automatically set date & time is through NTP over either Wi-Fi or mobile data.

                    Ah thanks for clearing that point.
                    From the logs, when the phone is stopped, current date/hour is saved and restored at restart, so when the upgrade happened somehow this saved date was wiped out it seems. If one assumes that, problems in the mobile data (my place has variable cellular quality connexion) combined with the blocking of Ntp on my wifi network could explain that the phone was stuck in 1970 even after a restart. Eventually the phone got a cellular data connection and resyncronized its current data.

                    1 Reply Last reply Reply Quote 0
                    • L Offline
                      lk108 @peat_psuwit
                      last edited by

                      @peat_psuwit Thanks for the detailed explanation, very helpful! And the detection in the MR you linked is a piece of art.

                      1 Reply Last reply Reply Quote 0
                      • adorsazA Offline
                        adorsaz @peat_psuwit
                        last edited by

                        @peat_psuwit said in Call for testing: Ubuntu Touch 24.04-1.1:

                        We're going to land a change that could help with this in tomorrow's 24.04-1.x daily image. If possible, please switch to 24.04-1.x daily channel and see if you can now send an SMS. If this is successful, we're going to have another RC image.

                        I've installed the release "2025-11-04/3" from the daily channel and I was able to send SMS, thanks !

                        I've also checked again the SMS reception and VoLTE calls (sending and receiving): everything works well 🙂

                        messayistoM 1 Reply Last reply Reply Quote -1
                        • messayistoM Offline
                          messayisto @adorsaz
                          last edited by

                          @adorsaz On my oneplus Nord 10 5g I am still not receiving sms neither on the latest rc nor on daily. I had to revert to stable. There its working. Did write that to the porter on telegram, too. Maybe device specific?

                          V 1 Reply Last reply Reply Quote 0
                          • C Offline
                            Carlos
                            last edited by

                            This weekend I updated my Vollaphone22 from 24.04-1.0 to 24.04-1.1 and screen starts blinking on boot before the logo Ubuntu appears.
                            With installer reinstalled 24.04-1.1 without wiping data and everything I use every day starts working normally until I found a serious bug on calls.
                            Yesterday a friend calls me, I answered the call but no sound from other side. My friend repeated calling me and all answering was no sound.
                            With other phone at hand I search the source of the error and found the Vollaphone22 was the culprit.
                            How to reproduce is like this, make a call to other phone, wait that the other side answer the call, talk to test that audio is ok, wait that the other phone hang the call, now if you repeat process there is no sound if answered the call. Only rebooting Vollaphone works again, untill other phone terminates the call first and error returns.
                            This error does not happens on version 20.04 stable.

                            peat_psuwitP 1 Reply Last reply Reply Quote 0
                            • M Offline
                              mjosenhans
                              last edited by

                              I yesterday installed on my volla phone 22 Ubport 24.04-1.1 RC1 via RC channel. I had problems with incoming and outgoing voice calls without any voice being heard in both directions. Thus I reinstalled 24.04-1.x stable via stable channel. However instead of running the again the 24.04.1 software from stable, the phone is now in a reset loop. It shows the volla screen, then a black screen via backlight on, then a black screen with backling off and then again the volla screen. And so on.

                              When going into boot loader, I was able to start the recovery mode, however it did not change, it is still in boot loop. Ubports installer is not finding the phone too. What can I do? I plan tomorrow to go to the phone service shop in berlin, which provides volla service and try to reflash the phone.

                              1 Reply Last reply Reply Quote 0
                              • peat_psuwitP Offline
                                peat_psuwit @Carlos
                                last edited by

                                @Carlos said in Call for testing: Ubuntu Touch 24.04-1.1:

                                This weekend I updated my Vollaphone22 from 24.04-1.0 to 24.04-1.1 and screen starts blinking on boot before the logo Ubuntu appears.
                                With installer reinstalled 24.04-1.1 without wiping data and everything I use every day starts working normally until I found a serious bug on calls.
                                Yesterday a friend calls me, I answered the call but no sound from other side. My friend repeated calling me and all answering was no sound.
                                With other phone at hand I search the source of the error and found the Vollaphone22 was the culprit.
                                How to reproduce is like this, make a call to other phone, wait that the other side answer the call, talk to test that audio is ok, wait that the other phone hang the call, now if you repeat process there is no sound if answered the call. Only rebooting Vollaphone works again, untill other phone terminates the call first and error returns.
                                This error does not happens on version 20.04 stable.

                                Thank you for the report. We're looking into this issue and will delay Ubuntu Touch 24.04-1.1 until we have this issue figure out.

                                @mjosenhans said in Call for testing: Ubuntu Touch 24.04-1.1:

                                I yesterday installed on my volla phone 22 Ubport 24.04-1.1 RC1 via RC channel. I had problems with incoming and outgoing voice calls without any voice being heard in both directions. Thus I reinstalled 24.04-1.x stable via stable channel. However instead of running the again the 24.04.1 software from stable, the phone is now in a reset loop. It shows the volla screen, then a black screen via backlight on, then a black screen with backling off and then again the volla screen. And so on.

                                When going into boot loader, I was able to start the recovery mode, however it did not change, it is still in boot loop. Ubports installer is not finding the phone too. What can I do? I plan tomorrow to go to the phone service shop in berlin, which provides volla service and try to reflash the phone.

                                We're sorry that this happen. Please try the following:

                                1. Boot to bootloader by pressing Volume Up + Power (or Volume Up + plugging cable), then select "Enter fastboot menu". Do not enter recovery.
                                2. Starts UBports Installer, then manually select "Volla Phone 22" (the Installer currently cannot auto-detect device model in bootloader mode).
                                3. Select "24.04-1.x Stable" channel and ensure "Bootstrap" option is checked. Leave "Wipe Userdata" unchecked.
                                4. Follow further instructions from the Installer.
                                1 Reply Last reply Reply Quote 1
                                • V Offline
                                  vverve @messayisto
                                  last edited by vverve

                                  @messayisto Well , stable is as it's say , for the sake of , learning/testing , i am reinstalling daily , from the phone updating app, not the installer ( ''the'' not recommended way ? maybe that changed?) and see if its working , or how many updates it will survive !!.
                                  So , updated booted to 24.04-1 x daily on oneplus n10 5g ,says revision 353 ,
                                  look like it all works for now , as stable did !
                                  I will post it if it goes wrong .
                                  i guess 24.04-1 x daily is 24.04-1-1 daily ?

                                  Daily Easyos Excalibur

                                  C V 2 Replies Last reply Reply Quote 0
                                  • C Online
                                    Charly @vverve
                                    last edited by Charly

                                    Hello forum,

                                    Since 24.04-1.1 rc1 I noticed that my micro SD card is read only mounted. I use a Volla X23.

                                    Is this issue known?

                                    Thank you very much and best regards
                                    Charly

                                    Greetings
                                    Charly

                                    UT 24.04 on Volla X23

                                    peat_psuwitP 1 Reply Last reply Reply Quote 0
                                    • V Offline
                                      vverve @vverve
                                      last edited by

                                      Sorry ...not about 24.04-1.1


                                      A follow up of my second daily test , thumb down ,receiving messages last an update , well ,it worked after first reboot upon new daily revision , but stop after second reboot !!? encounter boot freezing in bootloader unlock warning stage ,same happend one month ago before daily stopped receiving messages.
                                      Strange , plugged the phone to pc , to reinstall stable , forgot usb setting was in usb Tethering(here french=Partage de connection usb) , suddenly it picked up all those ''not received'' messages !!?!!
                                      Tried to reproduce it , could not .
                                      Back to stable , receiving messages.
                                      Note ; daily here = 24.04-1-x , stable=24.04-1.0
                                      one+ n10
                                      Looked at logs a little , honestly not knowing where to look exactly , wont share any , but you can suggest or ask for some !

                                      Daily Easyos Excalibur

                                      1 Reply Last reply Reply Quote 0
                                      • peat_psuwitP Offline
                                        peat_psuwit @Charly
                                        last edited by

                                        @Charly said in Call for testing: Ubuntu Touch 24.04-1.1:

                                        Hello forum,

                                        Since 24.04-1.1 rc1 I noticed that my micro SD card is read only mounted. I use a Volla X23.

                                        Is this issue known?

                                        I'm unable to reproduce this issue. There's actually a number of reasons a storage could be mounted read-only; could you please try switching back to 24.04-1.x Stable channel and see if the issue goes away?

                                        C 1 Reply Last reply Reply Quote 0
                                        • C Online
                                          Charly @peat_psuwit
                                          last edited by

                                          @peat_psuwit

                                          Hello,
                                          I installed 24.04-1.0 again and the micro SD card is mounted read only there too.

                                          I believe it still worked on 20.04.

                                          Many thanks & best regards
                                          Charly

                                          Greetings
                                          Charly

                                          UT 24.04 on Volla X23

                                          1 Reply Last reply Reply Quote 0
                                          • DJacD Offline
                                            DJac
                                            last edited by

                                            hello,
                                            i have tried to install the 24.04 on my sony xperia X. but it don't work. it stay on the "sony logo white page" for more than 1hr...
                                            i tried 2 differents ways :

                                            • install with ubports installer
                                            • update with release candidate channel
                                              same result.
                                              is it better if i open a topic on sony xperia x page ?
                                            G 1 Reply Last reply Reply Quote 0
                                            • G Online
                                              gpatel-fr @DJac
                                              last edited by

                                              @DJac

                                              Hello, from https://devices.ubuntu-touch.io/device/suzu/

                                              Essential Features State: Abandoned

                                              So your only chance is with Ubuntu 20.04 it seems, last UT version will not work just like this.

                                              1 Reply Last reply Reply Quote 0
                                              • First post
                                                Last post