• How to include non-installed python libraries in apps

    1
    2 Votes
    1 Posts
    310 Views
    No one has replied
  • What is the function in QML API to access screen brightness ?

    1
    1 Votes
    1 Posts
    198 Views
    No one has replied
  • Alternative Browser apps?

    26
    -1 Votes
    26 Posts
    6k Views
    ?
    @fuseteam yes us they curled up with laughter
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • How to convert a clickable app ?

    clickable
    7
    0 Votes
    7 Posts
    790 Views
    danfroD
    Although, thinking about it, I am not sure if our API key can handle the additional load of data calls. We might need to implement an option for users of snap/appimages to use their own API codes. This should be solvable, but should be considered.
  • This topic is deleted!

    5
    0 Votes
    5 Posts
    100 Views
  • App for bug reports?

    2
    1 Votes
    2 Posts
    272 Views
    N
    There is some talk about such an app in a different topic so we might get one somewhere in 2022
  • App daemon - how to?

    8
    0 Votes
    8 Posts
    846 Views
    arubislanderA
    @homer: Cron was written with an always-on server or a mostly-on desktop / laptop in mind. A mobile device needs to actually be mostly-off to get the longest possible battery life, while appearing to the user to be on-demand-on. The traditional tools for Linux simply we're not written with this use case in mind. So using them as is would degrade the use experience in an unacceptable way for most, if not all users. That having been said, for as long as UT is still based on 16.04, you could use Upstart Session Jobs
  • Clickable: docker images accumulate on my hard drive

    4
    2 Votes
    4 Posts
    572 Views
    BollyB
    I use this to delete all unused images in a month. sudo docker rmi $(docker images -a | grep "month" | awk '{print $3}')
  • Clickable 7 Beta Call For Testing Companion Post

    1
    1 Votes
    1 Posts
    217 Views
    No one has replied
  • AppArmor policy for gnome-keyring

    6
    0 Votes
    6 Posts
    761 Views
    klhK
    @dobey Looks like it should be possible with AppArmorDBus? Since each collection in the secrets service has a path (https://specifications.freedesktop.org/secret-service/latest/ch12.html) and AppArmor can be used to enable only a specific path. Then we would get something like the Keystore APIs on iOS/Android? With a nice bonus that with a system app for keyring access you would be able to look through the saved data of all applications. I'll try making a policy later and make a PR/MR if it works.
  • Can't find any photo on real devices

    8
    0 Votes
    8 Posts
    851 Views
    A
    Hi, If it helps, I did a sample app (with many comments) to manage import of a file with content hub, see: https://gitlab.com/ubuntu-touch-applications/sample-applications/importwithcontenthub
  • Detailed procedure for FluffyChat Encryption via Pantalaimon

    2
    5 Votes
    2 Posts
    1k Views
    U
    Any idea how to perform step 8 on desktop app running linux? Not able to verify encryption mentioned in step 8, there is no option for "verify them in your User Profile" in the app.
  • ListView - append is not a function

    Solved
    3
    0 Votes
    3 Posts
    365 Views
    0
    @lduboeuf thanks it works
  • App works on desktop but fails on phone

    Solved
    4
    0 Votes
    4 Posts
    512 Views
    H
    @homer said in App works on desktop but fails on phone: @cibersheep thanks a lot for that hint. It was not the database path, but the name. I had used some template code with whitespaces ("Sample database", ....) after removing the whitespaces it works now on the phone, too Just confusing that the behaviour is different between linux laptop and ut phone
  • Online Account acces from QT Console Application

    2
    0 Votes
    2 Posts
    338 Views
    B
    I found some time for further study, so I have the minimal working example, as I requested several days ago: ..... if (QString::compare(service.displayName(), "Owncloud", Qt::CaseInsensitive)) { // Initialize SignOn QPointer<SignOn::AuthSession> authSession; SignOn::IdentityInfo identityInfo; identityInfo.setId(ad.credentialsId()); SignOn::Identity * identity = SignOn::Identity::newIdentity(identityInfo); authSession = identity->createSession(ad.method()); SignOn::SessionData sessionData(ad.parameters()); // connect response and error signals connect(authSession, SIGNAL(response(SignOn::SessionData)), SLOT(signOnResponse(SignOn::SessionData))); connect(authSession, SIGNAL(error(SignOn::Error)), SLOT(signOnError(SignOn::Error))); // request secret and wait for response signal authSession->request(sessionData, ad.method()); } ..... /** * @brief Accounts reponse * */ void OwncloudSyncd::signOnResponse(const SignOn::SessionData &sessionData) { qDebug() << "Online Accounts response()"; qDebug() << " -> login: " << sessionData.UserName(); qDebug() << " -> password: " << sessionData.Secret(); } /** * @brief Accounts reponse * */ void OwncloudSyncd::signOnError(const SignOn::Error &error) { qDebug() << "Online Accounts response()"; }
  • QtMultimedia is not installed

    7
    0 Votes
    7 Posts
    2k Views
    lduboeufL
    @saveurlinux By the way, how to now wich version of lib to use ? The lib version is correlated now with the installed Qt version ( currebtly 5.12 ) so Multimedia should be 5.12
  • module "QtWebKit" is not installed

    9
    0 Votes
    9 Posts
    814 Views
    0
    Hello, Trying to get http works in QML, click ubuntu touch Here is my simple code: import QtWebView 1.1 WebView { url: "https://www.google.com" anchors.fill: parent } Change import QtWebKit 3.0 To import QtWebView 1.1. then got this error here. Compile says: Successfully built package in './kolesterol.007fred_1.0.0_all.click'. Errors ------ - functional:qt_qml_import_versions_framework Files contain QML imports too new for frameowrk used: qml/Main.qml /home/fredy/Desktop/ubuntutouch/kolesterol/build/all/app/kolesterol.007fred_1.0.0_all.click: FAIL non-network local connections being added to access control list Mounting device home to /home/fredy/.clickable/home QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' "/home/fredy/Desktop/ubuntutouch/kolesterol/build/all/app/install/%U" does not exist. [1:1:1105/165215.645057:ERROR:zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180. Command exited with non-zero exit status 1, see above for details. This is most likely not a problem with Clickable. Got a new problem inside the app says: This Site can't be reached / The webpage at https://www.google.dk migth be temporarily down or it may have moved permenenlty to a new address Thanks for your time ! Best Regards 007fred50
  • upload an App to Open Store - Error

    14
    0 Votes
    14 Posts
    1k Views
    AppLeeA
    Hi @007fred50 Have you check this page before publishing ? https://open-store.io/submit No need to create another project on Github. You just have to be consistant with the naming of the app.
  • Little survey on "Music recognition" app

    12
    0 Votes
    12 Posts
    1k Views
    AppLeeA
    @keneda You can also do it manually by deleting the proper directories But yeah if you want to do it with UTTT you should definitely do it before removing the app.