Version: 2023.2
言語: 日本語
Unity での Android の権限
ランタイム権限のリクエスト

アプリケーションの権限の宣言

Android applications declare what permissions they require in their Android App Manifest. This page explains how to manage permissions for an Android application. For a list of the possible permissions, see Manifest.permission.

Android アプリマニフェストファイルの修正と権限の管理は、以下のいずれかの方法で行えます。

  • アプリケーションの Android アプリマニフェストファイルを生成する Unity 用のカスタム Unity Library Manifest (ライブラリマニフェスト) テンプレートを作成する
  • Use the Android Project Configuration manager to modify the Android App Manifest file.
  • プロジェクトをエクスポートし、Android Studio で Android アプリマニフェストファイルを修正する

Note: Depending on the Player Settings and Unity APIs that the application uses, Unity automatically adds some required permissions to the Unity Library Manifest. For more information, see Unity-handled permissions.

テンプレート Unity ライブラリマニフェストの作成

Unity uses templates to produce the final Gradle project files. You can override the template that Unity uses and new permissions for an application via the template.

For more information, refer to Modify Gradle project files with Gradle template files.

Use the Android Project Configuration Manager

The Android Project Configuration Manager represents Gradle project files in C#. You can use the API to add new permissions for an application.

For more information, refer to Modify Gradle project files with Android Project Configuration Manager.

Android Studio の使用

最終的な Android アプリマニフェストファイルにどのパーミッションを含めるかを完全に制御するには、プロジェクトをエクスポートし、Android Studio で Android アプリマニフェストを編集してください。

For more information, refer to Modify Gradle project files with Android Studio.

その他の参考資料

Unity での Android の権限
ランタイム権限のリクエスト