- 安装了Android 7.1.1的诺基亚6出现问题
- 准许
AppOpsManager#checkOp(AppOpsManager.OPSTR_CAMERA, Process.myUid(), getPackageName())
返回AppOpsManager#MODE_ALLOWED
然而,当尝试www.example.com(i)检查相机属性时,我得到Camera.open(i) for checking camera properties I get
I/摄像机维修:摄像头0:"包裹"访问已受限
显然,只有当应用程序的软件包或uId被显式限制启动AppOpsManager #OP_CAMERA时,才会发生这种情况[1]。但为什么会发生这种情况呢?
样本代码
for (int i = 0; i < numCameras; ++i) {
List<Size> supportedSizes = null;
List<int[]> supportedFpsRanges = null;
Camera camera = null;
try {
camera = Camera.open(i);
Parameters parameters = camera.getParameters();
supportedSizes = parameters.getSupportedPreviewSizes();
supportedFpsRanges = getFpsRangesRobust(parameters);
} catch (Exception e) {
...
} finally {
if (camera != null) {
camera.release();
}
}
[1]www.example.com https://github.com/aosp-mirror/platform_frameworks_base/blob/oreo-mr1-release/services/core/java/com/android/server/AppOpsService.java#L2588
2条答案
按热度按时间t9aqgxwy1#
显然是设备问题。诺基亚6/TA-1000,安卓7.1.1
设想方案
可与任何其他应用程序重现,包括默认相机应用程序。
0ejtzxu12#
检查是否已将此行添加到应用清单。