Merge commit '8bc47e6e3da18df72110630eb6fdde82caa7d30d'
* commit '8bc47e6e3da18df72110630eb6fdde82caa7d30d':
Import testrunner changes from puppetmaster to keep them in sync.
Merge commit '855489d1f98d7dd19e49acfc6b6c2d186334e998'
* commit '855489d1f98d7dd19e49acfc6b6c2d186334e998':
Add contacts tests to the continuous test cycle
Merge commit 'e73b8485a926ba1b4ec438b57e89c9c84200945a'
* commit 'e73b8485a926ba1b4ec438b57e89c9c84200945a':
Add xdpi and ydpi to layout-configs XML Schema.
Merge commit '0f4c48a4c7398e9d678c5212ba73155e0694b61d'
* commit '0f4c48a4c7398e9d678c5212ba73155e0694b61d':
Fix the skins to do proper dpad rotation in landscape mode.
Merge commit '7571d11b7016b4dada3ad4db218c7d29214a13ba' into eclair-plus-aosp
* commit '7571d11b7016b4dada3ad4db218c7d29214a13ba':
Import testrunner changes from puppetmaster to keep them in sync.
Merge commit 'e377fa60d19b76a81b245f0e525652cdd22eb95f' into eclair-plus-aosp
* commit 'e377fa60d19b76a81b245f0e525652cdd22eb95f':
Add contacts tests to the continuous test cycle
Merge commit '5ea7700ffa5ee22012f88255f62aa4af7a1b840c' into eclair-plus-aosp
* commit '5ea7700ffa5ee22012f88255f62aa4af7a1b840c':
Add xdpi and ydpi to layout-configs XML Schema.
Merge commit 'b6d2a4990a21b78355ff95d62fd698b1dddbd793' into eclair-plus-aosp
* commit 'b6d2a4990a21b78355ff95d62fd698b1dddbd793':
Fix the skins to do proper dpad rotation in landscape mode.
Merge commit '3c8d2e272b71cca814dd694c3ba548f4a2a3a0a0' into eclair
* commit '3c8d2e272b71cca814dd694c3ba548f4a2a3a0a0':
Fix the skins to do proper dpad rotation in landscape mode.
Merge commit '2296cfbd37e696bd32e92c88a30dd290c7470018'
* commit '2296cfbd37e696bd32e92c88a30dd290c7470018':
Fix bug 2142296 where the user couldn't back out of the JetBoy demo.
Merge commit '51c5bc22bee411cf17ecdec88c8f1c4258594f1f'
* commit '51c5bc22bee411cf17ecdec88c8f1c4258594f1f':
Fix NDK usage of libgcc.a when building shared libraries
Merge commit '1028accb55919c0a84a4871002efb19a202c475c' into eclair-plus-aosp
* commit '1028accb55919c0a84a4871002efb19a202c475c':
Fix NPE when opening new layout file.
Merge commit '5bc6141cb29913d344b4a7881956af8b5074f560' into eclair-plus-aosp
* commit '5bc6141cb29913d344b4a7881956af8b5074f560':
Add development setting for compatibility mode.
When adding the parsing of the device XML files, I mostly tested with a
layout file already opened when Eclipse launched.
Well it turns out there's a slightly different code path when opening a file
*after* Eclipse has launched. The load of the device UI in the config
selected caused a rendering before the XML model was loaded which ended
up in an NPE in the recomputeLayout method.
Additionnally, I hadn't finalized the code for the GLE2, so this brings it
in line with the GLE1.
Change-Id: Ic86de6e91ca13793aceecb5706bc963edddb9241
Merge commit '8c77415ede684d89b738b3cf6cdaeaacd541eb87' into eclair-plus-aosp
* commit '8c77415ede684d89b738b3cf6cdaeaacd541eb87':
Fix bug 2142296 where the user couldn't back out of the JetBoy demo.
* changes:
Fix bug 2142296 where the user couldn't back out of the JetBoy demo. The application was trapping the key up event on the back key. It worked on Donut because the framework implemented the "back" behavior on the key down. The fix consists in sending the key up event on the back button to the Activity class.
The application was trapping the key up event on the back key. It
worked on Donut because the framework implemented the "back" behavior
on the key down. The fix consists in sending the key up event on the
back button to the Activity class.
Merge commit '9e4715e6d94e300605ab845c2e68bddaf8c23c8f' into eclair-plus-aosp
* commit '9e4715e6d94e300605ab845c2e68bddaf8c23c8f':
Fix ADT to use the new sdklib API
The issue came from a lack of device configuration and
missing default versions of some resources. We know use
an ADP1 configuration to choose the resources used by
the rendering.
Change-Id: I097b444e4fdc5572cfc53293a3215f1382f5d49c
Merge commit 'fce2633d14323f837bfe0f58aee64006e76fe67d' into eclair-plus-aosp
* commit 'fce2633d14323f837bfe0f58aee64006e76fe67d':
Fix NDK usage of libgcc.a when building shared libraries
The main idea is that libgcc.a should appear after object files and
static libraries but before depending shared libraries. This willl
force the linker to copy the libgcc.a functions required by the
generated library into the target binary, instead of relying on
what's available in libc.so and others.
This ensures maximum portability, and prevent problems in the future
when we change the toolchain, which translates to different libgcc.a
functions embedded in libc.so and other exposed native libraries.
However, this will make also generated shared libraries bigger, because
the compiler insists on generating code that depends on a bunch of C++
support functions (even when building from C sources). An increase of
about 8KB per shared library is expected.
Merge commit '0bb8ca45303d5cf6004ede4d0a2aa225ab746fec'
* commit '0bb8ca45303d5cf6004ede4d0a2aa225ab746fec':
Added a target to run the Contacts tests using runtest.
Add-ons are expected to provide a file called devices.xml in their root
folder. The XML schema for this file is
eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/layout-configs.xsd
I slightly fixed the schema so that normal screen size use the token
"normal" instead of "medium" to match the resource qualifier.
To round up the feature, the following changes are included:
- getEnum in the resource qualifier enum has been made public. There's no
sense in keeping it private and it'll help with people possibly using
valueOf which behaves differently (case sensitive so
ScreenSize.valueOf("normal") fails, while getEnum on the same string succeed.
- Updated the device configuration UI to deal with missing list of
devices while the SDK loads.
Change-Id: Ib1b01007d2ae7fd6398172c3549b2686c33d48be