Categories

  • The Meta category: Organizational or general discussion.

    1k Topics
    9k Posts
    I
    how to add VOLTE support formy device (asus zenfone max pro m1 -)?
  • Discuss news updates from Ubuntu Touch and its related projects

    1k Topics
    5k Posts
    UBportsNewsU
    Today is Ubuntu Touch Q&A Day Ubuntu Touch Q&A 165 is today at 19:00 UTC please join us on YouTube: https://www.youtube.com/watch?v=llTkwrdxth8 Questions can still be posted here https://forums.ubports.com/topic/10978/ubuntu-touch-q-a-165-call-for-questions for priority or live in the show. UBports@telegram #ubports:matrix.org #UBports #UbuntuTouch #UBportsQandA #Lomiri #OTA8 #Ubuntu #MobileLinux
  • Discuss and solve problems with other users

    4k Topics
    27k Posts
    B
    Just an update, I gave up on trying the KDEConnect workaround. I did some deep investigation on resolving the issue within Waydroid itself, and documented my progress. It's definitely a feature-request in Waydroid. https://github.com/waydroid/waydroid/issues/211 I haven't done any more work on it for a while, since my last post on github. There are a few libs being used in Waydroid, which I linked to, which have sparse documentation. I don't have deep enough knowledge of these languages and platforms to be able to fix this easily - not to mention android's workflow for builds. Wasn't able to do a build of LineageOS on my PC; some incompatibility with package versions. It'd be nice to resolve this for everybody who uses Waydroid, but IRL is taking priority for now.
  • 2k Topics
    17k Posts
    D
    @Moem Sorry, yes my translator didn't find laggy.. : but yes, indeed laggy : choppy, jerky... I edited above.
  • Discussions on development of Ubuntu Touch

    497 Topics
    6k Posts
    alagirialagiriA
    What is the latest (May ,12 ,2025) Status update on Ubuntu 24.04-1.0 ?
  • Discuss the user experience or design of Ubuntu Touch or its apps

    165 Topics
    2k Posts
    AppLeeA
    Hi @ezst036 To clarify what everyone is saying, you have to swipe out the lock screen if you don't have any code set. It's still necessary to unlock the phone. It just doesn't mean what you think it means.
  • Creating Ubuntu Touch apps

    728 Topics
    7k Posts
    Vlad NirkyV
    @lduboeuf Thanks for the answer Lionel. Well, i have made some tries but without success. Finally, i have remove the pip3 install of 8.3.1 and reinstall with snap and now it's working. There was something wrong with the blob fdc55cec6c2e
  • Porting Ubuntu Touch to new devices

    480 Topics
    4k Posts
    W
    @xixired The normal state of affairs until recently has been that 4G data works, but phone calls wouldn't work over 4G. But on a device without VoLTE (4G phone calls) working, I can still leave my mobile settings with 4G enabled, and it automatically switches to 3G when making/receiving a call. Interesting that 4G data is lost with VoLTE enabled. It seems that it affects several things. SMS/MMS were also affected as I underatand, and took work to function properly.Note thatI have no technical knowledge or coding skills. My understanding is that the major system wide work on VoLTE is done, but that it remains for device porters to get it working on their devices. This is easier on some devices than others.
  • Lomiri, the operating environment for everywhere

    67 Topics
    568 Posts
    alan_gA
    As kugiigi says, Ubuntu Touch is using an obsolete version of Mir (1.8) with dated Wayland support. Also, most of the Wayland support in Lomiri comes from Mir (the rest comes from Mir's support for "custom" Wayland extensions). The consequence of that is that there's no much prospect of improving the Wayland support in Ubuntu Touch without first updating it to use the current version of Mir. The good news is that is work currently going on to get Lomiri working with the current version (2.20) of Mir. As of today this works on the machines of the developers involved and is close to landing in both the Debian and Fedora archives. However, it will still take significant time to get the rest of Ubuntu Touch migrated over to this newer stack. That is probably the task that can most benefit from help at present. After all that is completed, it should be possible for Ubuntu Touch to track the current version of Mir, and Wayland support will follow Mir. It is also possible to contribute to Mir's Wayland support, but that won't help Ubuntu Touch at present.
  • Discussion on translating Ubuntu Touch and its core apps

    58 Topics
    323 Posts
    alagirialagiriA
    @doniks I want to know whether the news section , question and answer blog posts are available in weblate translation in Tamil language.There is no navigation box available as available in documentation page.i request weblate translators to provide the language transulation Navigation box for every forum .Thanking you.
  • A place to discuss ideas for promoting Ubuntu Touch

    55 Topics
    712 Posts
    P
    Hi. I have cap with sign Ubuntu Linux. Can be Ubuntu Touch.
  • Other Projects

    Projects which are started by a group within the UBports community

    64 Topics
    373 Posts
    ikozI
    The last step installs the rootfs usually in system partition, see the install section of the porting documention. Basically flash the latest xenial image from the CI to system. Alternatively push the image with adb to /data/system.img when booted to recovery. Otherwise you could try ubports installer with only the systemimage:install command. You can also see the halium-install source code, particularly these lines. Be sure to check if this partition exists as partition schemes can vary.
  • For things that just don't fit in the other categories.

    821 Topics
    5k Posts
    J
    Hi all ! I'm kinda new to the Ubuntu Touch fury and got it installed on a Poco X3 NFC i got on the cheap. a tad quirky but surprisingly nice. My goal, tbh, wasn't even have it as a daily, but replacing a small RockPi SBC I have running in my car that is underpowered, despite chewing over >1W. This averages 0.3W idle, with GPS+Wifi+LTE ... I don't need any GPIOs (but seems i'd have to live without OTG USB, unsure about that yet) I got Supervisor, Mosquitto, node.js installed, and it starts node-red on boot (ressources are mostly under the phablet user to keep / read-only) One of my issues is accessing GPS data (sure enough, first fix takes ages, but that's something else) I am totally at lost about the whole lomiri stack, dbus is already hard enough (I deal with hundreds of linux servers all day) This is almost "hey son, can you fix my printer" territory I can eavesdrop on the system dbus if I start GPS toolkit on the UI side: # dbus-monitor --system ... method call time=1747474346.025144 sender=:1.14 -> destination=:1.133 serial=117 path=/sessions/1; interface=com.lomiri.location.Service.Session; member=UpdatePosition double YY.096 double X.83785 boolean true double 74.9379 boolean true double 10.5377 boolean false int64 1747474346017862807 method call time=1747474346.028468 sender=:1.14 -> destination=:1.133 serial=118 path=/sessions/1; interface=com.lomiri.location.Service.Session; member=UpdateVelocity double 0 int64 1747474346019894752 ... But I'd like to get things running using a python3 or node.js script, in the background. import pydbus # Connect to the system bus bus = pydbus.SystemBus() # Access the location service location_service = bus.get('com.lomiri.location.Service') #location_service = bus.get('com.lomiri.location.Service','/com/lomiri/location') # Get the location location = location_service.GetLocation() print(f"Latitude: {location['latitude']}") print(f"Longitude: {location['longitude']}") print(f"Altitude: {location['altitude']}") unfortunatly, that object doesn't export any interfaces (or GI is lacking stuff, dunno) Ideally, i'd write i very light python3 daemon that would just update topics on the local mqtt so I can play with the data under node-red. Thanks for any pointers in the right direction JaXX./. Sidequestions: Would a USB-C hub be recognized ? (lsusb showed nothing) (damn, the thing draws 0.8W on it's own gotta find something else) Under android, it was able to have an active hotspot (with clients) while being connected to home wifi, I'll explore that soon but if anyone had a clue on how to reproduce the same use-case, it'd be great (the idea would be having other wireless sensors connecting to the phone, but the phone using home wifi when available instead of being stuck on LTE)