UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • mihaelM

      click on notification bubble

      Watching Ignoring Scheduled Pinned Locked Moved OS
      25
      0 Votes
      25 Posts
      385 Views
      P
      @gpatel-fr would not upgrade it. Just test notifications. It is indeed 16.04 and turns on. Haven't tested yet though.
    • mariogripM

      Looking for Testers: Ubuntu Touch 26.04-1.x (Early version)

      Watching Ignoring Scheduled Pinned Locked Moved OS
      13
      8 Votes
      13 Posts
      367 Views
      R
      readyblue said: (edit) after restart wi-fi start to work normally (both normal wi-fi and the hidden one) default browser still stuck in the loading after restart Bluetooth keyboard connects
    • S

      Lenovo TB-X605F Installs fine but doesn't boot

      Watching Ignoring Scheduled Pinned Locked Moved Lenovo
      12
      0 Votes
      12 Posts
      185 Views
      S
      @MrT10001 I reran the installer three times. It didn't work. So the third time I used this guide. And it worked! You're awesome man! Thanks!
    • L

      The camera and clock are malfunctioning

      Watching Ignoring Scheduled Pinned Locked Moved Sony Xperia X (F5121 & F5122)
      12
      1 Votes
      12 Posts
      185 Views
      L
      @DJac Both of these issues only started occurring for me after upgrading to version 24.04-1. But I'm sure the developers will find a solution. Otherwise, I’m satisfied with UT on my Xperia. The only long-standing bug that hasn’t been—or can’t be—fixed is the streak in the main camera’s image when you zoom in too much. It isn’t visible in the photos in the gallery, but you can see it in the video. But as mentioned, this bug has been known for a long time.
    • U

      I wanna go home

      Watching Ignoring Scheduled Pinned Locked Moved Design
      88
      5
      13 Votes
      88 Posts
      40k Views
      Zer0Z
      I made just this, and its an actual home screen. Not an app. https://forums.ubports.com/topic/12319/release-homespike-v1.0-a-real-home-screen-for-ubuntu-touch-multi-page-dock-drag-to-reorder-three-placement-modes-true-multitasking
    • V

      ‘Welcome’ message after system startup ... see photo

      Watching Ignoring Scheduled Pinned Locked Moved Lenovo Tab M10 HD (2nd Gen)
      8
      1
      0 Votes
      8 Posts
      294 Views
      MoemM
      @arubislander said: this is probably the left-overs of some app that shared status info to the greeter infographic Possibly the Lock Message app?
    • Zer0Z

      [Release] HomeSpike v1.0 — a real home screen for Ubuntu Touch (multi-page, dock, drag-to-reorder, three placement modes, true multitasking)

      Watching Ignoring Scheduled Pinned Locked Moved Design
      7
      3 Votes
      7 Posts
      71 Views
      P
      @Zer0 I would assume so, yes.
    • H

      Can't update to 24.04-1.3

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Lenovo Tab M10 HD (2nd Gen)
      13
      0 Votes
      13 Posts
      577 Views
      H
      @gpatel-fr Weirdly that does work somewhat, but the process seems to be rather convoluted. Rebooting to the bootloader/fastboot from the adb shell allows the installer to detect the device, but while installing it eventually reboots to recovery and shows a 'failed installation message (error 256)', and then it auto-reboots into the 'System Updater' screen you'd expect from an OTA update. So something about the installer 'unblocked' my previous update attempts (?).
    • fischer.pocoF

      Neuling - Smartphone - Typ

      Watching Ignoring Scheduled Pinned Locked Moved German / Deutsch
      7
      0 Votes
      7 Posts
      133 Views
      MoemM
      @fischer.poco said: zBsp.: Xiaomi Poco X3 NFC / X3 da fehlt im Netz dann das "/ X3" Damit wird gemeint: Xiaomi Poco X3 NFC oder Xiaomi Poco X3. Oneplus Nord n10 5g ist aber eine gute Wahl!
    • brenno.almeidaB

      [Alpha] Greenline - A qml Whatsapp client for Ubuntu Touch

      Watching Ignoring Scheduled Pinned Locked Moved App Development
      77
      3 Votes
      77 Posts
      5k Views
      mihaelM
      @brenno.almeida Amazing work, thank you so much! One thing I noticed - and I don't think it has only started in this latest version - is that if I open a conversation from the app and not from the notification then the notification doesn't dissapear - I think I remember it used to.
    • Linus67L

      Powersave mode extrem

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Support
      31
      1
      2 Votes
      31 Posts
      990 Views
      M
      @Linus67 Thanks very much. Will try it out…
    • Linus67L

      Is there a terminal command to disable the mobile data connection?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Support
      6
      0 Votes
      6 Posts
      232 Views
      Linus67L
      @gpatel-fr That´s perfect! Thank you very much for solving this stubborn problem. Now I can put the Pixel 3a into ‘Nokia 3210 mode’ with a single click. Calls and text messages work, and the battery lasts at least three days in this mode. #!/bin/bash # ==================================================================== # NOKIA 3210 MODUS: CPU throttling + All offline services (Pixel 3a) # ==================================================================== if [ "$EUID" -ne 0 ]; then echo "ERROR: Please run the script using: sudo $0" exit 1 fi echo "Enable Nokia 3210 mode..." # 1. Force CPU cores into power-saving mode for governor in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do if [ -f "$governor" ]; then echo "powersave" > "$governor" fi done echo "[✓] CPU throttling enabled." # 2. Turn off Wi-Fi nmcli radio wifi off echo "[✓] Wi-Fi disabled." # 3. Turn off location tracking (GPS) sudo dbus-send --system --type=method_call --print-reply --dest=com.lomiri.location.Service /com/lomiri/location/Service org.freedesktop.DBus.Properties.Set string:com.lomiri.location.Service string:IsOnline variant:boolean:false echo "[✓] Location tracking disabled." # 4. Turn off Bluetooth rfkill block bluetooth echo "[✓] Bluetooth disabled." # 5. Turn off mobile data sudo -u phablet DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/32011/bus" dbus-send --session --type=method_call --print-reply --dest=com.lomiri.connectivity1 /com/lomiri/connectivity1/Private org.freedesktop.DBus.Properties.Set string:com.lomiri.connectivity1.Private string:MobileDataEnabled variant:boolean:false echo "[✓] Mobile data disabled." # 6. Greenline-Service stop at user level XDG_RUNTIME_DIR=/run/user/32011 sudo -u phablet systemctl --user stop greenline.service 2>/dev/null echo "[✓] greenline.service stopped." echo "------------------------------------------------" echo "Success! CPU, wireless modules and GPS are in sleep mode." sleep 3
    • H

      Faild on 1+3t

      Watching Ignoring Scheduled Pinned Locked Moved Oneplus 3/3T
      5
      1
      0 Votes
      5 Posts
      101 Views
      MoemM
      @hunter_tor That sounds like you installed it? Good news! By the way, please use the attachment button to upload images. And resize them a bit before uploading. Thanks!
    • Linus67L

      Battery change on Lenovo

      Watching Ignoring Scheduled Pinned Locked Moved Lenovo
      5
      0 Votes
      5 Posts
      141 Views
      Linus67L
      @MrT10001 Getting stock Android 11 onto the Lenovo Tab was a real challenge yesterday. Problems: SPflashtool failed due to chip permissions. Attempts using MTK bypass tools also failed How it filaly worked (after ~3 houres) Download Lenovo Software Fix Tool (thanks for the tip) Create a Lenovo account (using a disposable email address) Start the recovery workaround (but you can only flash up to Android 10 !!!!) OK, perform a recovery with Android 10 The recovery tool downloads the ROM (A 11) to your PC Before starting the recovery, you must replace the downloaded Android 10 files with the Android 11 files witch you downloaded from the UBports link bevor. Then start the recovery process and the Lenovo Software Fix Tool will flash the tablet with Android 11, which you’ve placed in its nest, just like a cuckoo’s egg. Translated with DeepL.com (free version)
    • W

      lomiri-location-service GPS reliability patches (navius branch, v3.4.1+navius5)

      Watching Ignoring Scheduled Pinned Locked Moved OS
      4
      0 Votes
      4 Posts
      207 Views
      W
      @projectmoon A GPS Navigator. I was a lot of time searching for a GPS navigator with the functionality I like for me, but I didn't found anyone. So I decided to code my own. I'm reviewing it now for publishing it.
    • libremaxL

      Workaround for Internet access restrictions affecting ubports-installer

      Watching Ignoring Scheduled Pinned Locked Moved General
      10
      0 Votes
      10 Posts
      433 Views
      developerbaymanD
      host you could use google drive or whatever is allowed in your country
    • C

      Busy, crowded app overview; Can Ubuntu Touch be converted to an iPhone interface?

      Watching Ignoring Scheduled Pinned Locked Moved Design
      22
      2
      0 Votes
      22 Posts
      9k Views
      MoemM
      @Linus67 said: add separators or spacing between apps in the drawer I believe such a thing may be in the works!
    • Zer0Z

      Recommendations for well-architected UT apps to study

      Watching Ignoring Scheduled Pinned Locked Moved New Contributors
      3
      0 Votes
      3 Posts
      64 Views
      Zer0Z
      @projectmoon HEY! I run my own gitea server too! I host all my public repos on github tho. more eyeballs. I'm actually writing my own git system called giteam basically a google docs like version control with git on top. about ready to start testing. thanks for the link ill check it out.
    • Zer0Z

      Nord N100 BE2012 installation guide. Full reproducible repo.

      Watching Ignoring Scheduled Pinned Locked Moved Oneplus Nord N100
      3
      0 Votes
      3 Posts
      56 Views
      Zer0Z
      @rocket2nfinity if someone can donate the hardware I am willing to give it a go.
    • K

      [Break Your UT] Bigger and better Lomiri and Keyboard???

      Watching Ignoring Scheduled Pinned Locked Moved General
      18
      6 Votes
      18 Posts
      3k Views
      K
      @domubpkm The app itself would be doable but the packages aren't doable since they ust replace system files so translations can't be processed. I mean it's doable but it'll take for someone to modify each file manually and create separate packages per language