• Use Morph dialog elements in qt app?

    10
    0 Votes
    10 Posts
    674 Views
    lduboeufL
    @povoq maybe a look in the code of Morph.Web Webview QML type might help: https://github.com/ubports/morph-browser/blob/xenial/src/Morph/Web/MorphWebView.qml
  • native Threema client?

    19
    1 Votes
    19 Posts
    3k Views
    poVoqP
    I recently tried https://www.openmittsu.de/ on my Destop PC. It works fine and is qt based. The UI is definitly not suitable for mobile use, but it could be a good start for making a UT Threema app. Contrary to the Threema Web app it is stand alone, but you need the Android app once to create the ID, afterwards no need for it anymore.
  • Python get HTTP

    Solved
    2
    0 Votes
    2 Posts
    294 Views
    pavelprostoP
    Find the * .apparmor file in the project folder. Add permissions: { "policy_groups": [ "content_exchange", "content_exchange_source", "networking", "webview" ], "policy_version": 16.04 } After that the program will work
  • Python + device Camera? (nexus5)

    4
    0 Votes
    4 Posts
    329 Views
    flohackF
    @masterchop Normally you cannot access the Android camera via v4l devices. If they are there, they are only used internally by the camera blob drivers. You would need to access the camera via an abstraction layer, as we do with our camera services for QML/Qt applications, since it needs to be initialized, activated in the correct way.
  • app Simple Diary

    4
    0 Votes
    4 Posts
    602 Views
    joniusJ
    See Documentation for how to build the click with dependencies. You can check which dependencies can be installed from Ubuntu 16.04 Xenial repos in a version that fits the requirement. Maybe you'll find also PPAs to provide them. Otherwise you need to build them yourself. But all of this is mentioned in the documentation linked above.
  • How to get a web app to access the file manager?

    6
    0 Votes
    6 Posts
    509 Views
    TotalRandoT
    @keneda Eh, I might submit it to the app store. It would certainly grab attention (not sure if that's a good thing but I'm of the "all news is good news" school). My bigger concern is after they forked Mastodon to update the back end, the Mastodon community basically shunned their nodes and the founder, who was originally all in on FOSS previously, now seems to want to close-source everything since the experience left a bad taste in his mouth, which is a real shame, since that makes it much more like the other small players in social like Parler and MeWe. There's a lot of talent on that team though, so I can still hope.
  • Where is Contacts app source?

    Solved
    2
    0 Votes
    2 Posts
    315 Views
    C
    Here it is (https://github.com/ubports/address-book-app) It's not Contacts, it's address-book.
  • Feedback for the Seabass

    44
    4 Votes
    44 Posts
    9k Views
    mikhaelM
    @kugiigi thank you for the feedback! For some reason Seabass can't execute libertine-launch on Nexus 5, although libertine-launch works fine from Terminal. The problem could be somewhere in between seabass, pyotherside, libertine-launch python script and proot (used by libertine-launch), but unfortunately for now i don't know what exactly goes wrong.
  • Access the microphone from ubuntu touch webview

    6
    1 Votes
    6 Posts
    916 Views
    FlaF
    @flaun-in the code is done but isn't merged right now as it wouldn't work on most devices
  • "Taquin" My first App!

    4
    5 Votes
    4 Posts
    703 Views
    A
    Thanks @marathon2422 and @Opolork , I am pleased that you like it, I also received contributions for translations, that's motivating for me, I will update the app!
  • Could I compile a python GTK appeared for Ubuntu touch?

    python
    6
    0 Votes
    6 Posts
    1k Views
    J
    Packaging a GTK app as an click package is possible, but I could only manage to do so by giving the app special permissions (so this is a workaround and will most likely not be excepted in the official app store). Here is an example that worked on my Nexus 4 with Mir as the display manager and will maybe also work on other devices: Video of working app (a simple image editor): https://libre.video/videos/watch/2f2c5304-d278-4b43-84e0-3c463d3a6432 Source Code: https://gitlab.com/AdamSchrey/image_and_buttons Some of the things done here will maybe not be necessary on some devices or in future versions of Ubuntu Touch. I had to add this lines to the .desktop file: X-Ubuntu-Touch=true X-Ubuntu-XMir-Enable=true I had to add this line to the .apparmor file: "template": "unconfined", Otherwise I would get this error: ** (process:26446): WARNING **: Unable to exec '/usr/lib/arm-linux-gnueabihf/ubuntu-app-launch/xmir-helper image-and-buttons_0.9.0 ut_session.sh' in '/opt/click.ubuntu.com/.click/users/phablet/image-and-buttons': Permission denied I had to export this variable to get bigger buttons/text/entries...: export GDK_SCALE=2 To get an on screen keyboard I installed this packages on my device: maliit-inputcontext-gtk3 maliit-inputcontext-gtk2 ...and exported this variable: export GTK_IM_MODULE=maliitphablet I reply to this old post, because when I searched for a solution, this was one of the first things that came up and I could not find any working examples my self. Maybe someone will find this helpful or will tell me if my app and my solution also work on other devices. [image: 1608334801534-iab_ut.png] Some of the things I did, were taken from this website: http://kriscode.blogspot.com/2016/09/x-applications-on-ubuntu-phone.html
  • Using QBS for UBports applications

    7
    6 Votes
    7 Posts
    653 Views
    K
    @cibersheep And it even work on the Pinephone
  • A question about porting a Messenger app

    11
    0 Votes
    11 Posts
    1k Views
    TotalSonicT
    @x-dub - I use https://open-store.io/app/sailbook.sailbook without a problem for sending text and attachments on my Meizu Pro 5 running OTA-15 RC. Best regards, Steve Berson
  • Upload Button for images in Web app

    4
    1
    0 Votes
    4 Posts
    498 Views
    lmhL
    I have solved the problem. The issues had nothing to do with my code. Just in case it helps anyone else: In the file yourappname.apparmor (which is automatically generated by clickable) you need to add the policy group "picture_files_read". I assumed "content_exchange" would suffice but it doesn't. So this issue is solved
  • qml parse property between pages

    5
    0 Votes
    5 Posts
    528 Views
    T
    @007fred50 Try writing import "variables/varis.qml" as Varis So the first letter is uppercase.
  • QML - reload Repeater data?

    5
    0 Votes
    5 Posts
    4k Views
    lduboeufL
    @007fred50 Have you read some documentations about the Model View Delegate in QML ?. I can suggest https://qmlbook.github.io/ or the general Qt QML documentation [link text](link url) And yes best is to find examples. What does not work with yoyr. example ?
  • Getting started with webapp dev

    5
    0 Votes
    5 Posts
    573 Views
    ?
    @aclifton314 Why waste your skills when is https://open-store.io/app/webapp-creator.jujuyeh ?
  • What happened to "flas"? Alternative?

    11
    0 Votes
    11 Posts
    803 Views
    J
    @domubpkm Cool! Thanks! Again learned about a new feature...
  • Saving app data

    9
    0 Votes
    9 Posts
    581 Views
    B
    @doniks A warning has already been added (recently I think)
  • Some cookies save, some don't?

    1
    0 Votes
    1 Posts
    185 Views
    No one has replied