建立 Android 游戏项目的必备 XxxManifest.xml 配置

时间:2023-01-18 09:13:29
  1. 设置项目 build 的 sdk 版本为最新的
  2. 设置 minSdkVersion 属性为最低支持版本
  3. 在<manifest>元素中添加installLocation属性为preferExternal
  4. 在<application>元素中添加 largeHeap 为 true
  5. 在<application>元素中添加 persistent 为 true
  6. 在<application>元素中添加 debuggable 属性并设置为 true
  7. 在<application>元素中添加 hardwareAccelerated 为 true
  8. 在<activity>元素中设置 screenOrientation 属性为需要的方向(横向 landscape 或纵向 portrait )
  9. 在<activity>元素中设置configChanges属性为 android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
  10. 根据游戏风格设置是否全屏 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" 
  11. 添加2个权限 <uses-permission> 元素 name 值为 android.permission.WRITE_EXTERNALSTORAGE 和 android.permission.WAKE_LOCK
  12. 在<uses-sdk>元素中设置 targetSdkVersion 属性为你的目标 sdk 版本
  13. 在<manifest>元素下添加子 
    <supports-screens
            android:resizeable="true"
            android:anyDensity="true"
            android:largeScreens="true"
            android:normalScreens="true"
            android:smallScreens="true" />