• Changing the default version of qtcreator for Clickable

    6
    0 Votes
    6 Posts
    681 Views
    arubislanderA
    @utuser said in Changing the default version of qtcreator for Clickable: Is my setup the current standard and recommendation in UT app developement then? There is no "standard' in UT app development. clickable is a very convenient option, but not everyone uses the ide option. I for instance use VSCodium as an editor. I find QtCreator has too many options I never use. Others use Atom or Vi or Nano as code editors. A handful of developers don't even use clickable. Feel free to try QtCreator via clickable ide. If it works for you, then that is the right tool.
  • UT programming intents and system/app calls?

    4
    0 Votes
    4 Posts
    516 Views
    K
    No idea about intents but I guess its equivalent would be content hub and URI handling. They're far from being robust but that's all we have now
  • Who wants to maintain uAdBlock (Backend / App)

    10
    5 Votes
    10 Posts
    2k Views
    K
    I'm waiting for @beli3ver to get backend script in order to make the app work again after that, update and 20.04 will come if there is not to much code to change (more code will just means more delays)
  • {clickable-utility-release} ~Clickable-Manager

    3
    0 Votes
    3 Posts
    415 Views
    developerbaymanD
    i keep adding clickable commands prob gonna do them all over time eventually gonna put a loop on it to keep the menu open also create a clickable create instance in a non clickable directory
  • best practices on defining internal assets within clickable project?

    1
    0 Votes
    1 Posts
    181 Views
    No one has replied
  • anyone get clickable to run on device?

    3
    0 Votes
    3 Posts
    391 Views
    danfroD
    @jezek seabass2 app does allow to build on the device with an integrated clickable bundle.
  • Android inverse ingenier apps to Ubuntu Touch

    app development apps
    12
    0 Votes
    12 Posts
    2k Views
    developerbaymanD
    actually im hell bent on doing it ....yeah i get it poor performance ect ect but just think of the possibilities first im looking into calling java runtime from python then loading app.jar bundling a portable java runtime implementation and any dependencies within the UT app ....now at first its just gonna be java and prob slow as hell then i will make it work for android later but that will be way harder ....one step at a time itll be in the works for awhile cause im still stumped on running python within clickable i figured out web apps simple enough but i need more programmable meat ...so to speak
  • Call for testing: TELEports proxy support

    1
    2 Votes
    1 Posts
    380 Views
    No one has replied
  • Web developers needed ?

    1
    0 Votes
    1 Posts
    230 Views
    No one has replied
  • UT app kinda like aide?

    6
    0 Votes
    6 Posts
    872 Views
    arubislanderA
    @developerbayman Another good choice is Seabass2 Which does its compilation magic in a Libertine container it creates for the purpose.
  • Any plans for java in app development?

    7
    0 Votes
    7 Posts
    810 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
    2k 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
    793 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
    26k 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
    3k Views
    W
    @ezze You could disable docker when not in use.
  • Focal uVolMan

    1
    4 Votes
    1 Posts
    274 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
    1k 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
    387 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
    784 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.