Add microphone permission check/request for Android
This commit is contained in:
parent
0d0a0c8e91
commit
a37ee985d6
1 changed files with 5 additions and 0 deletions
|
@ -91,6 +91,11 @@ void DroidStar::keepScreenOn()
|
||||||
window.callMethod<void>("addFlags", "(I)V", FLAG_KEEP_SCREEN_ON);
|
window.callMethod<void>("addFlags", "(I)V", FLAG_KEEP_SCREEN_ON);
|
||||||
}
|
}
|
||||||
}});
|
}});
|
||||||
|
|
||||||
|
QMicrophonePermission microphonePermission;
|
||||||
|
if (qApp->checkPermission(microphonePermission) != Qt::PermissionStatus::Granted) {
|
||||||
|
qApp->requestPermission(microphonePermission, this, &DroidStar::keepScreenOn);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
void DroidStar::reset_connect_status()
|
void DroidStar::reset_connect_status()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue