• Any plans for java in app development?

    7
    0 Votes
    7 Posts
    472 Views
    developerbaymanD
    yeah i have alot of java code that i would love to get in UT, for now i just have excepted waydroid is there and i should use it .....im currently attempting to tackle the learning curve with clickable slowly but surly ill get there
  • Focal ut-tweak-tool

    6
    6 Votes
    6 Posts
    1k Views
    mateo_saltaM
    ok check out https://gitlab.com/myii/ut-tweak-tool/-/merge_requests/109 They have way more fixed than in my branch, will also give an idea of what needs work.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Platform Development Kit (PDK) for Focal

    6
    0 Votes
    6 Posts
    469 Views
    arubislanderA
    @matteo I could never really get the PDK to work reliably on my Ubuntu laptop either, to be honest. But I guess a good place to ask for help would be the Developer group chat on Telegram
  • How to create a plant identification app for ubuntu touch?

    71
    2 Votes
    71 Posts
    15k Views
    H
    Hi there, Hugo from Pl@ntNet project, the initial contact answering by email. Let us know if you had any issue, I've read some of the reply there but let me know if you need to read something from us.
  • Clickable: CMake Error: Cannot open file for write

    11
    0 Votes
    11 Posts
    2k Views
    W
    @ezze You could disable docker when not in use.
  • Focal uVolMan

    1
    4 Votes
    1 Posts
    171 Views
    No one has replied
  • Anyone try the i3 email client?

    Moved i3 email client email email client openstore fp2
    7
    0 Votes
    7 Posts
    635 Views
    W
    @opolork That is not my experience. With email you can tell over a period of time, if you get spam either you have used the address with someone that shares it or the provider has shared the address. In most instances the user has revealed their address.A secure provider would not last long sharing data.
  • Multi Factor Authentication...

    3
    0 Votes
    3 Posts
    228 Views
    MrT10001M
    @kugiigi That I know as I have used it on Dekko. I am thinking more of the nuts and bolts under the hood. With Google you had to go through Chrome and switch on the unsafe apps button.
  • Handle downloads with a WebView

    Solved
    4
    0 Votes
    4 Posts
    471 Views
    Schlicki2808S
    So, I finally found a solution. Okay, in my case, the constellation is a bit different: I have a qml app with a WebView. I ended up to trigger the download from HTML/Javascript side and to process the download on qml side. I failed to use the SingleDownload component because it can not handle data-URLs. So I implemented my own solution: // ... WebContext { id: mainContext onDownloadRequested: { var fileUrl = "/home/phablet/.local/share/schulferien.daniel/Downloads/" + download.downloadFileName; var request = new XMLHttpRequest(); request.open("PUT", fileUrl, false); request.send(decodeURIComponent(download.url.toString().replace("data:text/plain;,", ""))); PopupUtils.open(downloadedMessage); } } WebView { id: mainWebView context: mainContext // ... The "fileUrl" has to point to the application path + Downloads, otherwise a "device not open" error will occur.
  • ScrollView with ListView does not work

    1
    2
    0 Votes
    1 Posts
    123 Views
    No one has replied
  • Creating Apps, ADB: No devices attached

    17
    0 Votes
    17 Posts
    1k Views
    ?
    I checked with kde no problem. mtp-tools is not installed with Gnome and Kde. I just installed and configured with UT Tweak Tool Password/System/ADB Settings/USB Mode/MTP-Media Transfer Protocol.
  • 0 Votes
    9 Posts
    481 Views
    arubislanderA
    @aitzol if you mean, your app works on the desktop bit not on the device, you are probably missing the networking policy in your apparmor manifest file. See here for further information
  • Kotlin Multiplatform / Compose For Desktop Support

    1
    0 Votes
    1 Posts
    167 Views
    No one has replied
  • error in the Weather application

    5
    1
    0 Votes
    5 Posts
    334 Views
    ?
    Hello mschmids, there is a huge difference between shoveling between 22mm and 22cm of snow, like the first storm in mid November , in general it is always calculated in centimeters, for your calculation it is correct.
  • Read TextArea from another site

    textarea another site
    2
    0 Votes
    2 Posts
    202 Views
    CiberSheepC
    @dl8aax you could try using a signal
  • Two apps Fluffy Chat in OpenStore

    matrix fluffy chat openstore
    3
    0 Votes
    3 Posts
    376 Views
    A
    @kugiigi : Thanks for explaining. I hope the maintainers of the two Fluffy Chat apps and the OpenStore maintainer(s) also read this.
  • What type of app? (qml, html ...)

    2
    0 Votes
    2 Posts
    269 Views
    AppLeeA
    Hi @schlicki2808 That's an interesting question. My opinion is to do what is best for you. But I will nuance this. There are features like the swipe from bottom that are easier to do with a native QML app. HTML app are considered native as far as they are designed for Ubuntu Touch, but using C++ is faster than Javascript and there are tons of libraries one can use to improve their app. My idea is that HTML apps might be less optimized and maybe more resources hungry. But I might be wrong about it. Pure QML apps use Javascript for the processing. C++ is better and closer to the OS. HTML I imagine uses QtWebview or such to render HTML which should eat a bit of RAM and CPU power... For "simple" apps we won't probably notice the difference. For more power consuming apps, C++ libraries is the best IMHO. Regarding the visual aspect (which I believe is the core of your message) I think each developer has their own style and I'm not sure if the techno used has such an impact compared to the design choices of the developer. But I might be completely wrong as I only have experience with QML. Maybe Joan might have a better take/answer on this.
  • Matrix Notifications Existential Crisis

    4
    0 Votes
    4 Posts
    350 Views
    K
    @ari I see. That makes more sense. I guess the developer of Cinny or Florian.
  • Python should reset PulseAudio

    25
    0 Votes
    25 Posts
    4k Views
    klhK
    @arubislander Brian already did, I wrote it here for reference since the review on the MR is rather long. I can take a look at doing it once I finish higher priority stuff, I've been really missing this option in Podphoenix