As the title mentioned, today when I try to upload an apk to the google play store, I find out an error occur, because the apk only support 32bits machine, it is builded by armv7a compiler, Qt5.12.3.
The main reason I want to upload the app to the play store is avoid the permission issues, when I try to play the video by gstreamer, the adb always give me error message
W RenderThread: type=1400 audit(0.0:1201381): avc: denied { read } for name="perf_ioctl" dev="proc" ino=4026533700 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:proc:s0 tclass=file permissive=0
However, it works perfectly well with voice recording and playing audio, I already add following permission into the manifest files and make sure they are checked when the app start.
<uses-permission android:name=”android.permission.RECORD_AUDIO”/>
<uses-permission android:name=”android.permission.READ_EXTERNAL_STORAGE”/>
Any suggestions except of root my machine?Thanks