<div dir="ltr"><div><div>Hi,<br><br>I'm just playing around with building pyqt for android target from a windows host. I have created a .ui based QMainWindow application, that has a menu bar a few buttons and a few labels with pixmaps setup, and uses bluetooth low energy. I have the graphics specified as filesystem paths instead of resources as suggested on <a href="http://pyqt.sourceforge.net/Docs/pyqtdeploy/pyrcc.html">pyqt.sourceforge.net/Docs/pyqtdeploy/pyrcc.html</a>  On windows and linux the graphics load fine, but on android they don't appear to load, but the application works jsut fine.<br><br>The code for my icons is<br>root = QtCore.QFileInfo(__file__).absolutePath()<br>...<br>icon = QtGui.QIcon()<br>icon.addPixmap(QtGui.QPixmap(_root + "/resources/ic_launcher.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)<br>myMain.setWindowIcon(icon)<br><br>....<br><br>self.label_2.setText("")<br>self.movie = QtGui.QMovie(_root + "/resources/animation.gif");<br>self.label_2.setMovie(self.movie);<br><br>I tried using QFileInfo to list the path to the path to the files and they are there. The path is :/resources/animation.gif<br><br>Any suggestions on what I'm doing wrong or what else I could try? <br><br>Is there anyway to debug the python code when its running on android, or do I just have to use linux and hope it just works (other than print statements)?<br><br>Thanks<br>Simon<br><br></div>p.s. pyqtdeploy needs an option for specifying the spec file to use with qmake when its building a static pyqt5,  the same as sip already has, by default it wanted to use msvc-2010 on me when I have win32-g++, took me a while to work around that one. <br><br></div>Thanks again, great product!<br><div><br><br><div><br></div></div></div>