Android Manifest xml 文件与 Unity 游戏在某些 Android 手机上无法运行的事实有什么关系吗?

问题描述 投票:0回答:0

我不是安卓开发者,而是Unity游戏开发新手。我正在尝试为需要访问相机胶卷/画廊的 android 制作游戏。到目前为止,它已经在华为安卓版本 9 上运行。 我想知道它是否与android清单有关。

我使用这个免费插件来获得功能:https://assetstore.unity.com/packages/tools/camera/android-photo-cropper-212385#description

这是该文件的内容:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.package.photocropper" android:versionName="1.0" android:versionCode="1" android:installLocation="preferExternal">
  <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
  <application>
    <activity android:label="@string/app_name" android:screenOrientation="fullSensor" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale" android:name="com.unity3d.player.UnityPlayerActivity">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
        <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
      </intent-filter>
      <meta-data android:name="unityplayer.UnityActisvity" android:value="true" />
    </activity>

    <activity android:name="com.photocropper.code.WebViewActivity" >
    </activity>
  </application>

  <uses-feature android:glEsVersion="0x00020000" />
  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  <uses-permission android:name="android.permission.INTERNET" />
  <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  <uses-permission android:name="android.permission.CAMERA" />
  <uses-permission android:name="android.permission.RECORD_AUDIO" />
  <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
  <uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false" />
  <uses-feature android:name="android.hardware.touchscreen.multitouch.distinct" android:required="false" />


</manifest>

打开图库并选择图像后 apk 文件崩溃。

我尝试删除所有标签,除了:

  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

但它什么也没做。

android xml unity3d android-manifest manifest
© www.soinside.com 2019 - 2024. All rights reserved.