• Handling python dependencies

    Solved
    9
    1 Votes
    9 Posts
    1k Views
    A
    Just to explain the solution if someone stumbles across this with the same question: use sys to add "lib/python3.8/site-packages" to path. note that you not need to "../" out of the src directory. The end result looks like this: import sys sys.path.append('lib/python3.8/site-packages') You might need to change the Python version
  • Ubuntu Emulator and 20.04

    clickable ubuntu touch 20.04 emulator development
    4
    0 Votes
    4 Posts
    1k Views
    A
    @applee There is this - https://github.com/ubports/utqemu. Didn't work for me on Ubuntu 18.04 though.
  • Clickable desktop cannot run html APP

    Solved
    8
    1
    0 Votes
    8 Posts
    699 Views
    A
    Ah, I'll use the browser to preview the WEB APP temporarily
  • Don't have permission to exec library in cache directory

    Solved
    18
    0 Votes
    18 Posts
    1k Views
    pavelprostoP
    @cibersheep Yes,I want to write a guide. But first I need to make sure it works for all console programs. I tried, add the previous guides in github https://docs.ubports.com/en/latest/appdev/guides/index.html But something didn't work out for me. I try will do this in spare time
  • Migration from Oxide

    9
    0 Votes
    9 Posts
    1k Views
    F
    UPDATE: After some attempts and the help of Balcy user i finally get a working example on Desktop: clickable desktop Source code: https://github.com/fulvio999/testWebChannel Running on device i have this blocking issue: https://github.com/fulvio999/testWebChannel/issues/1 Any idea to solve it is welcome. Thanks !
  • Is libertine required for development?

    Solved
    3
    1 Votes
    3 Posts
    418 Views
    O
    @dobey thanks for clarifying the workflow. I was expecting it to be more like with an rpi, where I use sshfs in the ide to control the build remotely from my desktop.
  • Building on device with small root partition

    22
    0 Votes
    22 Posts
    4k Views
    dobeyD
    @anhilde Did you disable the tests or something? How did you get debs built to install if the issue wasn't resolved?
  • ContentHub files finalize transfer again

    1
    0 Votes
    1 Posts
    189 Views
    No one has replied
  • Reinstalling original version of a broken component

    8
    0 Votes
    8 Posts
    445 Views
    A
    @jezek good idea actually, I will give that a try.
  • QML change screen Orientation and Fullscreen mode.

    1
    0 Votes
    1 Posts
    227 Views
    No one has replied
  • Podbird Freezing on start for about 1 minute?

    6
    0 Votes
    6 Posts
    658 Views
    rikR
    @danqo6 Whoa, that is a very welcomed update! Africa thanks you!!!! (We are in Ethiopia, but many other countries have the same challenges)
  • Alternative Email client? (Kube-project)

    8
    0 Votes
    8 Posts
    881 Views
    poVoqP
    Now that we are on qt5.12, anyone willing to look into this again? It seems like a really nice email client with a convergent UI. Source-code is here: https://github.com/KDE/kube
  • Clickable can't install dependencies for native app

    Unsolved
    1
    0 Votes
    1 Posts
    152 Views
    No one has replied
  • QML camera feed is reversed

    python development camera
    1
    0 Votes
    1 Posts
    388 Views
    No one has replied
  • Docker/Clickable issue on UT

    ubuntutouch development clickable
    3
    0 Votes
    3 Posts
    670 Views
    B
    @povoq oh, I am sorry, I was trying to start developing with QML and python and thought clickable should be on the phone.
  • Need help developing a video, voip, messaging client

    6
    2 Votes
    6 Posts
    787 Views
    lisaliL
    @fla Hi! Lol, ok, I joined. There's a lot I need to learn, but I'll contribute whatever I can. I still plan to develop an app that connects to the WeChat API because my husband and I need it to communicate with his family in China. If China didn't ban Signal and other messaging apps, we would have a lot more apps to choose from.
  • Python examples

    11
    17 Votes
    11 Posts
    4k Views
    CiberSheepC
    @pavelprosto said in Python examples: Over the weekend I will figure out how it can be edited to add Python Examples :beaming_face_with_smiling_eyes: You might want to check here github.com/ubports/docs.ubports.com/
  • Porting my Qml + Python app to Ubports(Beginner)

    Solved
    16
    1
    0 Votes
    16 Posts
    2k Views
    A
    @makeixo I used the first episodes of the qml guide on Yputube made by KDAB. Its intendet for c++ but you dont need it to learn the basics. Python + qml is a different topic though. Ubports uses pyotherside for the communication between the two. You can take a look at my app if you want to see how to do it. (its pretty basic) https://github.com/Aarontheissueguy/WaterCount There are some other resources on this forum aswell. With that being said If Python is your first language, I recomend that you concentrate on learning it first. GUI's are'nt really that important for many fun personal projects. You can still come back to this project one or two months down the road of learning python. Feel free to ask again if you have a question.
  • What about Matrix?

    8
    1 Votes
    8 Posts
    993 Views
    PhoenixLandPiratP
    Just thought Id update you all with the latest update from Krille Direct link: https://matrix.to/#/!IwPxifXSjBLghpVEMh:matrix.org/$tRUfDQfAR_ZYCbEkksvSmfiVqI7ndBhW2rXjcjMMgpw Basically saying that ubuntu touch support will come back when he can compile flutter on arm.
  • How work with clipboard?

    Solved
    3
    0 Votes
    3 Posts
    423 Views
    pavelprostoP
    @danqo6 Thank you! These methods are easily implemented in a QML project too. Main.qml import Ubuntu.Components 1.3 ... onClicked:{ var txt="Simple text" Clipboard.push(txt); } ...