Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Do I install an app on the ubuntu Touch device

I've been looking into Ubuntu Touch.

So I installed ubuntu on a Nexus 10 following the instructions here

I built the sample app following the instructions here

So now I have a device running ubuntu touch and an application, how do I put the application on the device?

like image 555
Craig Warren Avatar asked Oct 21 '22 14:10

Craig Warren


1 Answers

You can use Qt Creator: Connect your Ubuntu Touch Device through usb open your project and simply press Ctrl+F12.

This works only if you have once installed ssh-server on the device.

Alternatively you can do it manually. Copy the necessary files (*.qml and *.desktop) to the device and start the application via ssh

qmlscene --desktop_file_hint=/usr/share/applications/qmlscene.desktop YourApp.qml

Source

Remember, this is all beta and if you are not a developer then you won't have much use for Ubuntu Touch at this stage. Eventually, Ubuntu Touch will have its own app store where it will be much easier to download apps and install them on your device.

like image 56
Cary Hartline Avatar answered Oct 24 '22 03:10

Cary Hartline