I have a Qt5 game (https://github.com/omidnikta/qtmind) that I can successfully deploy as follows (Host is Arch Linux)
/opt/android-qt5/5.2.0/bin/qmake
make install INSTALL_ROOT=android-build/
/opt/android-qt5/5.2.0/bin/androiddeployqt —output android-build/
Although the only permission is my AndroidManifest.xml is
<uses-permission android:name=“android.permission.WRITE_EXTERNAL_STORAGE”/>
but androiddeplyqt keeps adding
<uses-permission android:name=“android.permission.CAMERA” />
<uses-permission android:name=“android.permission.RECORD_AUDIO” />
<uses-feature android:name=“android.hardware.camera” />
to the AndroidManifest.xml. Any way to prevent that behaviour?
↧