我有一个使用React Native Camera库以及香草React Native的CameraRoll的项目。当我打开应用程序时,该应用程序会请求“相机”权限,但我不知道为什么。这仅是因为我在AndroidManifest.xml中指定了吗?
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gradualcamera">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>
为什么在使用React Native Camera时我不需要请求权限,但是当我使用CameraRoll时,默认情况下不授予权限,所以我必须使用React Native Permissions库。
我之所以这样问是因为我想在用户打开应用程序时立即全部请求这些权限,并且由于不知道在何处请求权限而很难实现。现在,用户“默认”收到了对Camera的请求,但未收到对Storage的请求。这是为什么?
相关分类