diff options
Diffstat (limited to 'android/avd/hardware-properties.ini')
-rw-r--r-- | android/avd/hardware-properties.ini | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/android/avd/hardware-properties.ini b/android/avd/hardware-properties.ini index 6b106f4..89acf9f 100644 --- a/android/avd/hardware-properties.ini +++ b/android/avd/hardware-properties.ini @@ -24,6 +24,8 @@ # # Ram size +# Default value will be computed based on screen pixels +# or skin version name = hw.ramSize type = integer default = 0 @@ -146,6 +148,23 @@ type = diskSize abstract = Cache partition size default = 66MB +# LCD width +name = hw.lcd.width +type = integer +default = 320 +abstract = LCD pixel width + +name = hw.lcd.height +type = integer +default = 640 +abstract = LCD pixel height + +name = hw.lcd.depth +type = integer +default = 16 +abstract = LCD color depth +description = Must be 16 or 32. Color bit depth of emulated framebuffer. + # LCD density name = hw.lcd.density type = integer @@ -155,9 +174,10 @@ description = Must be one of 120, 160 or 240. A value used to roughly describe t # Maximum VM heap size # Higher values are required for high-dpi devices +# Default will depend on RAM size. name = vm.heapSize type = integer -default = 16 +default = 0 abstract = Max VM application heap size description = The maximum heap size a Dalvik application might allocate before being killed by the system. Value is in megabytes. |