我正在使用Unity3d开发Android游戏。 当我使用Unity生成.apk文件然后在我的手机上安装应用程序时,在安装对话框中它表示“应用程序不需要任何特殊权限”。但是,在我的Android清单中,我有Internet和位置权限。
据我所知,如果targetSdk>如图23所示,互联网许可被视为正常许可,因此不会提示许可对话。但是,只要我启动应用程序,它就会要求访问设备位置。这对我来说很好,我认为这是应该工作的方式。
我的问题是:为什么安装对话框指出应用程序不需要任何特殊权限?不应该,至少在位置权限,在安装对话框中说明?
我的清单看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.DiogoMelo.Exergame" android:versionName="1.0" android:versionCode="1" android:installLocation="preferExternal">
<application android:icon="@drawable/app_icon" android:label="@string/app_name" android:isGame="true" android:banner="@drawable/app_banner">
<activity android:name="com.yusufolokoba.pedometer.PedometerActivity" android:label="@string/app_name" android:screenOrientation="sensorLandscape" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density">
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
<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>
</activity>
<meta-data android:name="unity.build-id" android:value="fe7aacd9-9aed-4446-a3d2-45a1f1474bda" />
<meta-data android:name="unity.splash-mode" android:value="0" />
<meta-data android:name="unity.splash-enable" android:value="True" />
<meta-data android:name="android.max_aspect" android:value="2.1" />
</application>
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="25" />
<uses-feature android:glEsVersion="0x00020000" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<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>
答案 0 :(得分:0)
在安装时必须授予所有权限之前,android sdk 23中的权限发生了严重的变化。从23开始,只有在运行时才会请求权限,理想情况下仅在需要时才需要。使用Unity,我认为在第一次启动时总是直接询问权限以使事情变得更容易。
答案 1 :(得分:0)
我终于有时间在运行Android 5.1的手机上进行测试,安装对话框显示了所需的权限。所以没有问题,它只取决于android版本的运行。