// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using FlaxEngine;
namespace FlaxEditor.Content.Settings
{
///
/// The Android platform settings asset archetype. Allows to edit asset via editor.
///
public class AndroidPlatformSettings : SettingsBase
{
///
/// The application package name (eg. com.company.product). Custom tokens: ${PROJECT_NAME}, ${COMPANY_NAME}.
///
[EditorOrder(0), EditorDisplay("General"), Tooltip("The application package name (eg. com.company.product). Custom tokens: ${PROJECT_NAME}, ${COMPANY_NAME}.")]
public string PackageName = "com.${COMPANY_NAME}.${PROJECT_NAME}";
///
/// The application permissions list (eg. android.media.action.IMAGE_CAPTURE). Added to the generated manifest file.
///
[EditorOrder(100), EditorDisplay("General"), Tooltip("The application permissions list (eg. android.media.action.IMAGE_CAPTURE). Added to the generated manifest file.")]
public string[] Permissions;
///
/// Custom icon texture to use for the application (overrides the default one).
///
[EditorOrder(1030), EditorDisplay("Other"), Tooltip("Custom icon texture to use for the application (overrides the default one).")]
public Texture OverrideIcon;
}
}