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

    Posts

    Recent Best Controversial
    • RE: Fairphone 3/3+ (FP3/FP3+) Port - Halium 10

      @france1 Please, be polite. People here is giving their personal time, and @Luksus effort has been outstanding already; the least we could do is be grateful 🙂

      posted in Fairphone 3
      T
      thrill_seeker
    • RE: Fairphone 3/3+ (FP3/FP3+) Port - Halium 10

      I would like to know if there is any way in which we could help, regarding this issues. Specifically, I am interested in:

      • Mobile data
      • Internet in anbox
        I am not a software developer but I have some notions! Thanks!
      posted in Fairphone 3
      T
      thrill_seeker
    • RE: Fairphone 3/3+ (FP3/FP3+) Port - Halium 10

      @koens You are absolutely right! Just started recovery mode and that fixed it! 😄 Thank you very much!

      posted in Fairphone 3
      T
      thrill_seeker
    • RE: Fairphone 3/3+ (FP3/FP3+) Port - Halium 10

      Hi! First of all @Luksus, thanks for your incredible work!
      I am trying to flash my FP3+ and eventually I am stuck in the "Fairphone - Powered by android screen"; I've already read posts related to this, but it may be that instructions are scattered or that I am not understanding them properly:

      • FP3 port
      • Two sim cards

      Here is what I did, maybe @KoenS or @AlphaZingarus could help me out too.
      First, I checked that I have Android 10, unlocked OEM, downloaded latest Halium 10 build and went into fastboot mode. Then:

      Attempt 1

      • Unlock flashing: fastboot flashing unlock
      • Wipe data using TWRP, having downloaded twrp image: fastboot boot twrp-3.5.2_9-0-FP3.img. Then, from TWRP menu, slide for "Swipe to Allow Modifications" -> "Wipe" -> "Format Data".
      • Flash boot image: fastboot flash boot boot.img -> SUCCESS
      • Flash system image: fastboot flash system system.img -> SUCCESS
      • Power on the FP3 -> Stucked in android start screen

      Attempt 2

      • Unlock flashing: fastboot flashing unlock
      • Flash boot image: fastboot flash boot boot.img -> SUCCESS
      • Flash system image: fastboot flash system system.img -> SUCCESS
      • Wipe data using TWRP, exactly the same way as in Attempt 1
      • Power on the FP3 -> Stucked in android start screen

      Any ideas? Is it related to wiping data process? Am I doing something wrong? Thank you very much in advance!

      posted in Fairphone 3
      T
      thrill_seeker
    • RE: OTA-17 Call for Testing Companion Post

      @applee I am actually having the exact same problem but since OTA-15 or OTA-16 approx (do not know exactly when it started). It is quite curious... I thought I was the only one 🙂

      posted in OS
      T
      thrill_seeker
    • RE: Possible new user with a couple of questions for the community

      @branja6 I can tell you than I currently have 4-5 android apps right now through Anbox in my Nexus 5, and they are slow but usable.
      Downside of it are mainly battery usage and that you have to find the proper .apk file for each app that you want (and some of them do not work).
      Welcome!!

      posted in General
      T
      thrill_seeker
    • RE: Daily driver?

      N5 as daily driver since last year, stable for now!

      posted in General
      T
      thrill_seeker
    • RE: SearX search engine for Morph, please

      @jezek wow! thank you very much, you found it in a moment. Do yo know (or anyone) if it is possible to send patches instead of pull requests? (I do not have a Github account, and if possible I would like to avoid creating one). Thanks!

      posted in Support
      T
      thrill_seeker
    • RE: SearX search engine for Morph, please

      I would like to add ask.moe from my side. My idea was actually to send a patch/pull request to morph code, I suppose it would not be really difficult, but I still have to dive into the code and I do not have much time... Actually, if I find the time I could add your search engine as well 🙃

      posted in Support
      T
      thrill_seeker
    • RE: Cross OS, Multi Platform Password Managers

      UTPass, which uses (gnu/linux) pass under the hood. Works as a client (cannot add pwds on UT) but works well and is compatible with pass, which is awesome.

      posted in General
      T
      thrill_seeker
    • RE: Run script on boot

      @arubislander Good point! I tried it, but to no avail u.u anyway, thank you for the tip!

      posted in Support
      T
      thrill_seeker
    • RE: Run script on boot

      @Emphrath Of course! Here you have:

      #!/bin/bash
      
      # Set variables
      filelist_dir=/home/phablet/Documents/anbox
      bk_dir=/home/phablet/Documents/anbox/bk
      files_dir=/home/phablet/.local/share/applications
      filelist=list_files.txt
      
      # Delete dir bk if exists and create it again
      rm -rf $bk_dir
      mkdir $bk_dir
      
      # Get string of files to mv from filelist
      files=$(cat $filelist_dir/$filelist)
      
      # Append files_dir to each file
      files_to_mv=$(for file in $files; do echo $files_dir/$file; done)
      
      # Move all files from files_dir into bk_dir
      for file in $files_to_mv; do mv $file $bk_dir; done
      

      This file is called desktop-delete.sh, and reads a file called list_files.txt that contains all apps to hide. In my case, it contains the following (see .local/share/applications for all apps):

      anbox-com-android-inputmethod-latin.desktop
      anbox-com-android-inputmethod-latin.png
      anbox-com-android-calculator2.desktop
      anbox-com-android-calculator2.png
      anbox-com-android-calendar.desktop
      anbox-com-android-calendar.png
      anbox-com-android-contacts.desktop
      anbox-com-android-contacts.png
      anbox-com-android-deskclock.desktop
      anbox-com-android-deskclock.png
      anbox-com-android-documentsui.desktop
      anbox-com-android-documentsui.png
      anbox-com-android-email.desktop
      anbox-com-android-email.png
      anbox-com-android-gallery3d.desktop
      anbox-com-android-gallery3d.png
      anbox-com-android-music.desktop
      anbox-com-android-music.png
      anbox-com-android-settings.desktop
      anbox-com-android-settings.png
      anbox-org-chromium-webview_shell.desktop
      anbox-org-chromium-webview_shell.png
      

      I have both files contained in this path: Documents/anbox. The file delete-desktop.sh should be executable (do chmod a+x Documents/anbox/delete-desktop.sh).

      Having all this, is just a matter of executing the script (./Documents/anbox/delete-desktop.sh) and should work fine!

      posted in Support
      T
      thrill_seeker
    • RE: Run script on boot

      Hi again, I am sorry but I tried exactly what you said and does not work 😞 I think that maybe anbox is started after unity8 as well, and the script may be run before anbox launches?

      I am not really sure, but thank you very much anyway for your time!

      posted in Support
      T
      thrill_seeker
    • RE: Run script on boot

      @dobey It is just to hide android (anbox) apps from the drawer; I have a script that I run everytime that I boot the phone, and would like to automate this.
      How exactly does this .local/share/upstart work? There is no upstart existing script or folder as I see it. And how should I call the script from there? Sorry, I am a little bit lost 🙂 Thanks!

      posted in Support
      T
      thrill_seeker
    • Run script on boot

      Hi all,
      I would like to run a simple bash script just after booting my Nexus 5. I tried to use cron job or rc.local file (saw it in a couple of tutorials) but I am having problems when editing these files. Could it be because it is a read-only file system? Is there any other way to run scripts on boot then?
      Thank you in advance!

      posted in Support boot script
      T
      thrill_seeker
    • RE: Anbox issue/questions

      @Rebecca58 Yes, you can! As I said, I have it on mine 🙂 (OTA-12)

      posted in Support
      T
      thrill_seeker
    • RE: Anbox issue/questions

      @Rebecca58 I usually go to Settings > Updates > Update settings (at the bottom), and there you will see the information.

      Related to the instructions to follow, I will refer again to the video: https://www.youtube.com/watch?v=dOfVTp1XtX4&feature=youtu.be

      posted in Support
      T
      thrill_seeker
    • RE: Anbox issue/questions

      @nontrivial I am on stable too, and Wifi working in Nexus 5 with Anbox. Did you follow the same steps as in the video in the other post? I did that (just changing devel to stable) and it worked out of the box.

      posted in Support
      T
      thrill_seeker
    • RE: Futify (spotify client) need beta testers

      Very easy question, is there a way to enable/disable shuffle play? Great app anyway, finally a good spotify client!! 🙂

      posted in App Development
      T
      thrill_seeker
    • RE: What language do you speak?

      Catalan/Spanish!

      posted in Off topic
      T
      thrill_seeker