2

I have an app written in Qt and it uses QtDBus. I need to port it on android. Do not have much experience with both technologies.

when I try to compile my Qt app for android I get am getting an error:

fatal error: QtDBus/QtDBus: No such file or directory

in line

#include <QtDBus/QtDBus>

Compilation for desktop goes as it should

I have found info that dbus is not supported by android(or is it outdated info?). Is there any way to do so?

László Papp
  • 51,870
  • 39
  • 111
  • 135
poul
  • 123
  • 2
  • 14

1 Answers1

2

I have found info that dbus is not supported by android(or is it outdated info?). Is there any way to do so?

Short answer: not for now.

dbus has not been supported on Android for a while, so QtDBus will not be supported for now respectively.

László Papp
  • 51,870
  • 39
  • 111
  • 135
  • 1
    Wait, does that mean dbus was supported at one time? I thought it had never been supported on Android. – sashoalm Mar 17 '16 at 14:15