• core-apps dev - help get started

    11
    1 Votes
    11 Posts
    2k Views
    lduboeufL
    @flohack yes i was thinking about that too, thanks.
  • Creating a terminal app

    3
    0 Votes
    3 Posts
    1k Views
    J
    @einstein212 Thanks for the tip! A VM environment to run in seems smart, kind of sandboxed environment to fiddle around in. I will give it a try Regards /Jimmid
  • [GUIDE] App development directly on your UT device

    1
    1 Votes
    1 Posts
    701 Views
    No one has replied
  • Keyboard development

    2
    0 Votes
    2 Posts
    818 Views
    L
    and in the far future, talking about ideas on how to improve presage prediction.
  • USB Device (OTG) access from QML app

    1
    0 Votes
    1 Posts
    839 Views
    No one has replied
  • stellarium app

    2
    0 Votes
    2 Posts
    713 Views
    LuksusL
    There was a similar app called "Réaltaí" in the Ubuntu App Store. But it seems, that it isn't brought to the Openstore. https://uappexplorer.com/app/com.ubuntu.developer.doflah.realtai https://launchpad.net/realtai
  • Libertine

    2
    0 Votes
    2 Posts
    1k Views
    G
    Hi Locamama, I think the missing piece is the Desktop Apps scope, which was released yesterday on OpenStore: https://open.uappexplorer.com/app/libertine-scope.ubuntu
  • XMeye on Ubuntu Touch?

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • webapp for dropbox

    6
    1 Votes
    6 Posts
    2k Views
    R
    @bq4-5 Thanks to all. Really. This is only a webapp but I'm studying to develop true apps. I'm an android developer and finally I found, as ubuntu user, in UBports a fresh air in the smartphone world. Thanks a lot
  • carddav sync nextcloud/owncloud

    2
    0 Votes
    2 Posts
    1k Views
    twinkybotT
    Hi there, it will be available in OTA-3 (https://forums.ubports.com/topic/770/calddav-with-nextcloud/2) Otherwise you can use this script: https://gist.github.com/boTux/069b53d8e06bdb9b9c97
  • RPV in Hammerhead

    3
    1 Votes
    3 Posts
    931 Views
    R
    RPV is a VPN-like feature. It's in "Settings"
  • Ogra webapp - javascript alerts not working

    2
    0 Votes
    2 Posts
    703 Views
    lduboeufL
    @lduboeuf ok, finally found a workaround. Build it from scratch. Seems that by allowing all i.e webapp-container --webappUrlPatterns=* ... it's fine. source code here: https://github.com/lduboeuf/ut-ttb-wrapper
  • 2 Votes
    12 Posts
    3k Views
    mimecarM
    Perfect. I have to update the SDK installation chapter to add the use of the virtual machine and the modifications in the latest version of Ubuntu. If you have any questions with the use of the virtual machine ask me.
  • DroidDrive emulation/porting possible?

    4
    1 Votes
    4 Posts
    1k Views
    T
    @darthearon Not a problem, I'd create one myself (Love DriveDroid, very useful application), but I need to learn QML first and I don't have the time to do so right now.
  • cmake issues trying to open messaging-app

    13
    0 Votes
    13 Posts
    3k Views
    bhdouglassB
    @vadrian89 can you try doing an apt-get update && apt-get upgrade within the container? If that doesn't change anything then you must be still missing a library needed for compiling.
  • Returning a QImage object to scope?

    1
    0 Votes
    1 Posts
    512 Views
    No one has replied
  • Porting Android apps to run on UT

    4
    1 Votes
    4 Posts
    2k Views
    libremaxL
    @linuxhelmet If you want or need an OS which can execute android apps then android, android-like or sailfishos are the right ways to go. For now and for the visible future, UBports UT is (very) usefull for people who don't care about android apps.
  • HowTo - Mopidy music server to Ubuntu phone

    mopidy howto music spotify
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Audio Player:The QMediaPlayer object does not have a valid service

    17
    0 Votes
    17 Posts
    7k Views
    S
    @wdehoog i'd love to develop stuff for ubports, but my skills not good enough. Also i have not so much free time at the moment to lern something Thanks for the link, i will take a look on the code.
  • Deploying aditional files with the application

    2
    0 Votes
    2 Posts
    774 Views
    V
    I have solved this, in case anyone hits the same brick wall: In the .pro file, the one selected in my screenshot, I needed to specify that it should install those aditional files. In my case I mentioned that it should install the DISTFILES, like the following: [image: 1510479063063-captur%C4%83-de-ecran-din-2017-11-12-11-27-02-resized.png] DISTFILES += weathericons-regular-webfont.ttf Ubuntu-C.ttf fontawesome.ttf #set the path where to install distfiles aswell as adding which files to be added dist_files.path = /Cumulus dist_files.files += $${DISTFILES} #you can see that at the the end I've mentioned that dist_files should be installed aswell INSTALLS+=config_files qml_files desktop_file dist_files Might seem dumb of me for not knowing, that the files should be manually set to install, but I haven't used it before since for Android Qt Creator does that for me because it has a special directory where I need to add the aditional files. And on desktop I manually copied the files in the build directories without thinking I can tell qmake which files should also be deployed. So in case any other has this issue might help them out.