diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/corelib/platform/android/qandroidextras.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/corelib/platform/android/qandroidextras.cpp b/src/corelib/platform/android/qandroidextras.cpp index d8d47ebdb0e..72805ae9ed2 100644 --- a/src/corelib/platform/android/qandroidextras.cpp +++ b/src/corelib/platform/android/qandroidextras.cpp @@ -1135,6 +1135,10 @@ requestPermissionsInternal(const QStringList &permissions) Requests the \a permission and returns a QFuture representing the result of the request. + \note QPermission is the recommended API to use for requesting permissions. + If QPermission doesn't cover an Android permission you want to request, + this preliminary API can still used instead. + \since 6.2 \sa checkPermission() */ @@ -1158,6 +1162,10 @@ QtAndroidPrivate::requestPermissions(const QStringList &permissions) Checks whether this process has the named \a permission and returns a QFuture representing the result of the check. + \note QPermission is the recommended API to use for requesting permissions. + If QPermission doesn't cover an Android permission you want to request, + this preliminary API can still used instead. + \since 6.2 \sa requestPermission() */ |
