UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Ingo
    3. Best
    Offline
    • Profile
    • Following 0
    • Followers 1
    • Topics 3
    • Posts 168
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Android on UB Touch questions

      A few answers

      1. anbox is very experimental still so personally I would expect more than 50% of all apps to not work (anything that uses Google services like the maps api will not work); and probably less than 10% of apps to work without major issues (for me, of around 12 apps I tried only spotify works without me noticing problems)
      2. as far as I know there is no icon for anbox (it's just software that runs in the background)
      3. I guess these are system apps (on a normal android they are not listed by default in the settings apps)
      4. after you enabled anbox with anbox-tool it is supposed to start automatically on boot, but if I remember correctly I also had situations were some commands didn't work; only after starting an android app those were possible so I guess there is still some difference between something like "ready" and "running" or so (or maybe it's just a bug due to the experimental nature of anbox on UT)
      5. Android apps rely on a back button, so running android apps on a system that doesn't have those just can't be operated fully; there may or not be workarounds like stopping the app and starting it again
      posted in Support
      IngoI
      Ingo
    • RE: Porting basics question

      There is also a 3h recording of a live porting session you might want to check out
      https://www.youtube.com/watch?v=nShXVDXM50A

      posted in Porting
      IngoI
      Ingo
    • RE: Ubuntu Touch is working poorly for me on my FP2

      @dtarrant said in Let's be honest, Ubuntu Touch is bad:

      In support of Android, many folk cite the availability of a plethora of apps. How many do you really need? Aren't many of them simply "shovelware"?

      Of course I can give only examples relevant to me 😉

      Some apps that come to my mind

      • I pay 10 EUR per month for Spotify Premium and I mostly listen to it while on my way (to work, friends, etc.); haven't found a way to do that on UT natively (Spotify is one of the few apps that works in anbox, though, but with horrible battery life)
      • I pay money to use car/bike/scooter sharing apps and none of them offer a way to book a vehicle on their mobile website
      • my Office 365 apps at work only work with certain trusted apps installed

      These are kind of show stoppers for me.

      So personally I can very well understand where ollehell comes from. For me UT is unusable as a daily driver. And probably will be forever, I don't know. Still I like and support the idea that people have a choice. And I met some in person who are happy using UT. So I contribute a little (working on docs, the installer and providing a manual installation alternative), but admittedly with focus on the Fairphone 2 which ultimately is what drives me.

      posted in General
      IngoI
      Ingo
    • RE: Volla phone (is back and) will be a new UT phone in 2020

      @domubpkm said in Volla phone might be (or not) a new UT phone in 2020:

      But what could encourage us to go more to this phone than another and invest in this campaign?

      Well, it would add one more new device to the list of supported devices that are not old and can be bought regularly. Which would increase the number of available new UT phones to choose from by 100% or 50% (depends on when Pinephone and Librem 5 are available).

      posted in Off topic
      IngoI
      Ingo
    • RE: Need help connecting again to external display

      That's strange...

      The curly braces enclose optional parts, i.e. /{,var/}run/aethercast/dhclient*.leases lrw, means /var/run/aethercast/dhclient*.leases lrw, and /run/aethercast/dhclient*.leases lrw,

      The curly braces ({}) make this rule apply to the path both with and without the content enclosed by the braces.
      https://www.novell.com/documentation/apparmor/apparmor201_sp10_admin/data/bx5bmkc.html

      P.S.: because I'm usually on the dev channel and update rather frequently, I wrote a script to re-apply the change after each update: https://gist.github.com/Ingo-FP-Angel/905c5655511435b0ded2eb354dab538b

      posted in Support
      IngoI
      Ingo
    • RE: Uninstalling Apk using Anbox

      In the doc it says adb uninstall [APP_ID] to uninstall an Android App but it doesn't explain what [APP_ID] is.
      http://docs.ubports.com/en/latest/userguide/dailyuse/anbox.html#how-to-uninstall-apps

      [APP_ID] is not the name of the APK so that won't work. There are different ways to find out this ID, e.g. for Whatsapp: if you look at the app in the play store with your browser, the ID is part of the URL
      https://play.google.com/store/apps/details?id=com.whatsapp

      com.whatsapp in this case is the [APP_ID] , therefore it would be

      adb uninstall com.whatsapp
      
      posted in Support
      IngoI
      Ingo
    • RE: Do I need to root my Fairphone 2 to install Ubuntu Touch? [Solved]

      @Flohack said in Do I need to root my Fairphone 2 to install Ubuntu Touch?:

      you need to unlock the bootloader if it is still locked

      The FP2 bootloader is always unlocked AFAIK. Sure, it does no harm to unlock it, but it isn't necessary.

      posted in Support
      IngoI
      Ingo
    • RE: Anbox apk install

      I've done it recently. Let's assume you want to install Spotify and the APK is called "com.spotify.music.apk".

      Then, on your PC in a terminal in the same folder where the APK is located

      adb root
      adb push com.spotify.music.apk /home/phablet/anbox-data/data
      adb shell
      sudo lxc-console -ndefault -P /home/phablet/anbox-data/containers -t0
      cd data
      pm install com.spotify.music.apk
      

      Then, on the phone, refresh the app scope and it should be there.

      posted in OS
      IngoI
      Ingo
    • RE: Fairphone 3 (FP3)

      Ah yeah, I just remembered it wrong, it was too long ago I tried out UT 😄

      Edit: the first post mentions to edit /etc/ubuntu-touch-session.d but it should be /etc/ubuntu-touch-session.d/android.conf

      It actually did contain the line with "handset", so I just added the other two. I assume it needs a reboot for it to take effect?
      Edit: yeah, after the changes and a reboot the pull down menu looks fine

      Yet another edit: of the things marked as "not tested" I tried SMS in/out and they are working 🙂

      When long-pressing the power button to see the shutdown menu, the entry "restart" only restarts unity8 (I had assumed it'd do a full reboot; which is possible via sudo reboot over ssh).

      And in order to try out mobile data I temporarily disabled WiFi. After enabling it again, the phone did not reconnect, even if my WiFi was still in the list of known networks and also seemed to have stored the correct PSK. Only forgetting it and connecting again with PSK worked.

      posted in Fairphone 3
      IngoI
      Ingo
    • RE: Nexus 4 can't install via UBports installer

      About my findings which files are flashed etc.: that other thread strictly will just work for the FP2!
      The installer queries some files depending on the selected device and will do more/less/other things for other devices. One carefully needs to look at the configs before trying anything too bold 😉

      posted in Support
      IngoI
      Ingo
    • Small meeting in Dresden with Ubuntu Touch and Fairphone Users

      Just to let everyone know: I was in Dresden for work-related reasons and asked in the UT/FP community if anyone was interested in a small meetup. Three other people were 😉

      0_1523648825144_photo_2018-04-12_22-19-35.jpg

      In the picture are two Fairphone 2, and one each of Meizu Pro 5, BQ Aquaris E5 and Fairphone 1.
      They're equipped with Ubuntu Touch, LineageOS and Fairphone OS (Android 6 for FP2, Android 4.2.2 for FP1), respectively.
      Not on the picture is one phone with Firefox OS (forgot to ask about the model).

      posted in Off topic
      IngoI
      Ingo
    • RE: Huawei/Google on social media etc. Opportunity to promote UBports?

      Sounds rather close to this discussion here: https://forums.ubports.com/topic/2751/ubuntu-on-huawei-devices

      posted in General
      IngoI
      Ingo
    • RE: Fairphone 3 (FP3)

      Found something about the core module: https://forum.fairphone.com/t/speaker-module-from-fp3/64728

      At the moment the Fairphone Forum is down for maintenance, though.

      posted in Fairphone 3
      IngoI
      Ingo
    • RE: Oneplus One refusing APK install

      Does anbox work in general, e.g. can you start the Android settings app?
      Last time I fiddled around with anbox I had the impression that you need to start an Android app to actually have anbox fully running (or maybe that was just coincidence).

      posted in Support
      IngoI
      Ingo
    • RE: Ubuntu Touch in the Wild (aka: UT pictures for the news)

      How about

      Dresden meetup April 2018

      Taken in April at the Small meeting in Dresden with Ubuntu Touch and Fairphone Users

      That is, if you don't mind that the FP1 in the lower right/FP2 upper right corner are showing Android (or just crop the picture...).

      posted in Design
      IngoI
      Ingo
    • RE: Fairphone 2 (FP2)

      @peat_psuwit said in Fairphone 2 (FP2):

      The biggest issue currently is that the phone tends to reboot itself when trying to power it off. The issue has been traced to be related to the Android container

      That happened on stock ROM as well. IIRC it was fixed at some point. Until then, the workaround was to enable the torch before shutting down (no kidding!).

      posted in Fairphone 2
      IngoI
      Ingo
    • RE: Anbox & OTA-10 update

      Android apps and data of anbox are not lost on OTA updates, they reside somewhere below /home/phablet.
      You will have to reflash the anbox kernel and also install the anbox packages to the rootfs again.
      Then, after enabling anbox with the anbox-tool it should all be there.

      posted in Support
      IngoI
      Ingo
    • RE: [HowTo] Update baseband & other firmware

      The Android 7 update for FP2 is scheduled for mid-september.

      posted in Fairphone 2
      IngoI
      Ingo
    • RE: Have An Opinion On Fairphone 3 OS. There's A Poll.

      And if you register in order to vote, you might as well have a look at the other ubuntu related topics 😉
      https://forum.fairphone.com/tags/ubuntu

      posted in News
      IngoI
      Ingo
    • RE: Development testers for Anbox

      Using pawlinskis approach from https://forums.ubports.com/post/14023

      sudo mount -o rw,remount /
      sudo rm -r /var/cache/apt
      sudo tune2fs -m 0 /dev/loop0
      sudo apt update
      sudo apt install android-tools-adb
      sudo mount -o ro,remount /

      The system image has just 2 GB and the commands above free some of that space. The 23 GB free storage you mentioned is the part of the storage reserved for user data.

      posted in OS
      IngoI
      Ingo