The refactoring part involves moving as much as possible stuff
in SdkLib/internal/repository.
The UI has moved in SdkUiLib/internal/repository except a specific
public wrapper for calling the Sdk Updater window.
There are also a bunch of new classes to handle the internal
structures: Package is the base type and to match the XML element
names we have PlatformPackage, AddonPackage, DocPackage and
ToolPackage.
All headers have been fixed.
This eliminates the requirement that all sensors share a single file descriptor.
This, along with concurrent changes in other projects, fixes bugs b/1614524 and b/1614481
Signed-off-by: Mike Lockwood <lockwood@android.com>
Merge commit '838143199e2270e3f103050c76cf24539ad8dfe1' into donut
* commit '838143199e2270e3f103050c76cf24539ad8dfe1':
AI 149189: Adding dalvik porting guide based on content from the Android source tree under dalvik/docs/porting.html
This changes make_windows_sdk so that it packages everything
in a temp dir. Once the build & packaging succeeds, the final
Zip is copied to the desired location.
The temp dir is *not* cleared on zip errors, which helps in
diagnosing packaging issues after the fact.
This has no impact on the build process itself (i.e. make
adb, emulator, etc.) which all happen in $SDK/out anyway.
The temp dir can be passed as an argument. If not provided,
the default Cygwin $TMP is used. Otherwise /tmp is used.
I also added an usage description when parameters are missing.
The add-on manifest can now declare a USB vendor ID with the line
usb-vendor=<id>
The ID must be a 16 hexadecimal value in the format 0xABCD.
The 'android' tool now has a new command 'android upate abd' that will create
a file called 'adb_usb.ini' in ~/.android/
This file will be read by adb to add support to those new vendor IDs.
Merge commit '2fd2d2f90e66eca36141ee594b83ed57f5a39764' into donut
* commit '2fd2d2f90e66eca36141ee594b83ed57f5a39764':
AI 149080: Change default PDK app engine version to 2
The latter had the effect of removing the benefit of optimization settings, i.e. a typical compiler
command would look like:
<toolchain-compiler> .... -Isources/<module-path> -I -O2 -g
The "-I -O2" was interpreted literally as "search in '-O2' directory, and the optimization was
never set to 2 (or 0 in case of debug mode).
Merge commit 'e557a732807eb6f3c29630ce882c644936df1e02' into donut
* commit 'e557a732807eb6f3c29630ce882c644936df1e02':
AI 149055: Add initial file for LED content including doxygen code from lights.h
The munmap() kernel calls are traced but the tracing code wasn't doing
anything with them. This caused the number of mapped regions in a process
to grow large in some cases and also caused symbol lookup errors in some
rare cases. This change also adds support for new trace record types
for supporting JNI (native) calls from Java into native code. This helps
with constructing a more accurate call stack.
* changes:
Force --no-undefined at link time to generate an error when trying to generate a shared library that references undefined symbols. This can be overriden by defining LOCAL_ALLOW_UNDEFINED_SYMBOLS in your Android.mk to 'true'
Merge commit '429fbd82d82c5e278a546de226c193138a9a2669' into donut
* commit '429fbd82d82c5e278a546de226c193138a9a2669':
AI 149005: Change from ndk to platform's ndk (pndk), the ability to make your own java callable libraries to c code.
Merge commit 'c3c7479ab6df0650e6e63b67ec713c7267df9e82' into donut
* commit 'c3c7479ab6df0650e6e63b67ec713c7267df9e82':
AI 148985: Adding an initial file for sensors content with doxygen content included from sensors.h.
Merge commit '6ff7572fd50f148e96d87ecb347f138f69ea810d' into donut
* commit '6ff7572fd50f148e96d87ecb347f138f69ea810d':
AI 148967: Cloned from CL 148932 by 'g4 patch'.