ewol/sources/ConfigAndroid.in

126 lines
2.9 KiB
Plaintext

menu "Android"
config __EWOL_ANDROID_MINIMUM_SDK_VERSION__
prompt "Minimum android Version"
int
default 9
help
This is the minimum version of Android that is Requested
config __EWOL_ANDROID_SHOW_TITLE__
prompt "Application display title"
bool
default y
help
This Permit on android to hide title
choice
prompt "Display orientation mode"
default __EWOL_ANDROID_ORIENTATION_AUTO__
help
Force the display possibilities of this video settings
config __EWOL_ANDROID_ORIENTATION_AUTO__
bool "0: Automatic orientation (change automaticly)"
config __EWOL_ANDROID_ORIENTATION_LANDSCAPE__
bool "1: Lock in landscape mode"
config __EWOL_ANDROID_ORIENTATION_PORTRAIT__
bool "2: Lock in portrait mode"
endchoice
menu "Permissions"
config __ANDROID_PERMISSION__WRITE_EXTERNAL_STORAGE__
prompt "WRITE_EXTERNAL_STORAGE"
bool
default n
help
Allows an application to write to external storage.
config __ANDROID_PERMISSION__CAMERA__
prompt "CAMERA"
bool
default n
help
Required to be able to access the camera device.
config __ANDROID_PERMISSION__INTERNET__
prompt "INTERNET"
bool
default n
help
Allows applications to open network sockets.
config __ANDROID_PERMISSION__MODIFY_AUDIO_SETTINGS__
prompt "MODIFY_AUDIO_SETTINGS"
bool
default n
help
Allows an application to modify global audio settings.
config __ANDROID_PERMISSION__READ_CALENDAR__
prompt "READ_CALENDAR"
bool
default n
help
Allows an application to read the user''s calendar data.
config __ANDROID_PERMISSION__READ_CONTACTS__
prompt "READ_CONTACTS"
bool
default n
help
Allows an application to read the user''s contacts data.
config __ANDROID_PERMISSION__READ_FRAME_BUFFER__
prompt "READ_FRAME_BUFFER"
bool
default n
help
Allows an application to take screen shots and more generally get access to the frame buffer data
config __ANDROID_PERMISSION__READ_PROFILE__
prompt "READ_PROFILE"
bool
default n
help
Allows an application to read the user''s personal profile data.
config __ANDROID_PERMISSION__RECORD_AUDIO__
prompt "RECORD_AUDIO"
bool
default n
help
Allows an application to record audio
config __ANDROID_PERMISSION__SET_ORIENTATION__
prompt "SET_ORIENTATION"
bool
default n
help
Allows low-level access to setting the orientation (actually rotation) of the screen.
config __ANDROID_PERMISSION__VIBRATE__
prompt "VIBRATE"
bool
default n
help
Allows access to the vibrator
config __ANDROID_PERMISSION__ACCESS_COARSE_LOCATION__
prompt "ACCESS_COARSE_LOCATION"
bool
default n
help
Allows an application to access coarse (e.g., Cell-ID, WiFi) location.
config __ANDROID_PERMISSION__ACCESS_FINE_LOCATION__
prompt "ACCESS_FINE_LOCATION"
bool
default n
help
Allows an application to access fine (e.g., GPS) location.
endmenu
endmenu