OSDN Git Service

android-x86/development.git
14 years agoam 4619318d: Merge "Sample code to illustrate how to use the accelerometer" into...
Mathias Agopian [Wed, 14 Jul 2010 23:36:10 +0000 (16:36 -0700)]
am 4619318d: Merge "Sample code to illustrate how to use the accelerometer" into gingerbread

Merge commit '4619318dd1398bd4f87b2e74827b9fb9796a2643' into gingerbread-plus-aosp

* commit '4619318dd1398bd4f87b2e74827b9fb9796a2643':
  Sample code to illustrate how to use the accelerometer

14 years agoMerge "Sample code to illustrate how to use the accelerometer" into gingerbread
Mathias Agopian [Wed, 14 Jul 2010 23:31:10 +0000 (16:31 -0700)]
Merge "Sample code to illustrate how to use the accelerometer" into gingerbread

14 years agoam 4948c163: Remove prebuilt static library "libthreaded_app.a".
David 'Digit' Turner [Wed, 14 Jul 2010 22:39:04 +0000 (15:39 -0700)]
am 4948c163: Remove prebuilt static library "libthreaded_app.a".

Merge commit '4948c163663ecc343c97e4c2a2139234f1d3273f' into gingerbread-plus-aosp

* commit '4948c163663ecc343c97e4c2a2139234f1d3273f':
  Remove prebuilt static library "libthreaded_app.a".

14 years agoRemove prebuilt static library "libthreaded_app.a".
David 'Digit' Turner [Wed, 14 Jul 2010 00:00:24 +0000 (17:00 -0700)]
Remove prebuilt static library "libthreaded_app.a".

Make the "glue library" part of the NDK as an importable module,
this has several benefits:

- no need to distribute a binary here with no easy way to regenerate it

- no need to explicitely list -lthreaded_app in your LOCAL_LDLIBS
  (this is handled automatically by the module import capability)

- allows easier native debugging of what's really happening.

Note that the header is renamed <threaded_native_app.h>

+ Modify the native-activity sample to use and import the new module
+ Start documenting usage in the header file. We probably need something
  better, and will probably put it under development/ndk/docs/ at some
  point.

After this patch, we should be able to get rid of the code under
framework/base/native/{include.glue}

Change-Id: I6e81d70a225a6ca006beabf6e8b42529e8f371b9

14 years agoSample code to illustrate how to use the accelerometer
Mathias Agopian [Sat, 3 Jul 2010 01:12:04 +0000 (18:12 -0700)]
Sample code to illustrate how to use the accelerometer

this is a small particle + physics system that shows how
to integrate accleration data into positions accurately.

Change-Id: I3bbdc433f52d98464269ac8cb996c4cf037ae8d6

14 years agoam 98b2c359: Copy over updated NDK APIs and follow other API changes.
Dianne Hackborn [Wed, 14 Jul 2010 01:55:43 +0000 (18:55 -0700)]
am 98b2c359: Copy over updated NDK APIs and follow other API changes.

Merge commit '98b2c359c2b3361f43e14b0c5d07a02c055dd10e' into gingerbread-plus-aosp

* commit '98b2c359c2b3361f43e14b0c5d07a02c055dd10e':
  Copy over updated NDK APIs and follow other API changes.

14 years agoCopy over updated NDK APIs and follow other API changes.
Dianne Hackborn [Wed, 14 Jul 2010 00:51:26 +0000 (17:51 -0700)]
Copy over updated NDK APIs and follow other API changes.

Change-Id: Ifec95268c9ade21963eea13357ec2f56fd7968c2

14 years agoam 52705bb0: Add initial gamepad support.
Jeff Brown [Wed, 14 Jul 2010 00:43:46 +0000 (17:43 -0700)]
am 52705bb0: Add initial gamepad support.

Merge commit '52705bb02c7679f68585544d39480f26adb6f1e9' into gingerbread-plus-aosp

* commit '52705bb02c7679f68585544d39480f26adb6f1e9':
  Add initial gamepad support.

14 years agoam fd606bc3: Migrate to new keycode constants in keycodes.h.
Jeff Brown [Wed, 14 Jul 2010 00:43:39 +0000 (17:43 -0700)]
am fd606bc3: Migrate to new keycode constants in keycodes.h.

Merge commit 'fd606bc303bdf1fafefc4a6b79d050faa26d0800' into gingerbread-plus-aosp

* commit 'fd606bc303bdf1fafefc4a6b79d050faa26d0800':
  Migrate to new keycode constants in keycodes.h.

14 years agoAdd initial gamepad support.
Jeff Brown [Tue, 13 Jul 2010 23:45:16 +0000 (16:45 -0700)]
Add initial gamepad support.

Change-Id: Ide1922ea36f8b64100b4dba57e718479b8a0bec5

14 years agoMigrate to new keycode constants in keycodes.h.
Jeff Brown [Tue, 13 Jul 2010 23:14:54 +0000 (16:14 -0700)]
Migrate to new keycode constants in keycodes.h.

Change-Id: I775efb0f73b418db5bf65c218949b164f8e65647

14 years agoam 5ef6b2f2: ndk sample hello-neon: use to access the \'cpufeatures\' library
David 'Digit' Turner [Tue, 13 Jul 2010 23:46:11 +0000 (16:46 -0700)]
am 5ef6b2f2: ndk sample hello-neon: use  to access the \'cpufeatures\' library

Merge commit '5ef6b2f2568944e9dedf31c83716b8dd94dd506a' into gingerbread-plus-aosp

* commit '5ef6b2f2568944e9dedf31c83716b8dd94dd506a':
  ndk sample hello-neon: use $(call import-module) to access the 'cpufeatures' library

14 years agondk sample hello-neon: use $(call import-module) to access the 'cpufeatures' library
David 'Digit' Turner [Tue, 13 Jul 2010 22:50:46 +0000 (15:50 -0700)]
ndk sample hello-neon: use $(call import-module) to access the 'cpufeatures' library

Change-Id: I29397158de0ccdd89dfe4da72a544fad14a8324e

14 years agoam 29534f62: Update for improved glue.
Dianne Hackborn [Sat, 10 Jul 2010 01:27:47 +0000 (18:27 -0700)]
am 29534f62: Update for improved glue.

Merge commit '29534f6275fdc4cba1c732f89f8442b6d887eb50' into gingerbread-plus-aosp

* commit '29534f6275fdc4cba1c732f89f8442b6d887eb50':
  Update for improved glue.

14 years agoUpdate for improved glue.
Dianne Hackborn [Sat, 10 Jul 2010 01:21:45 +0000 (18:21 -0700)]
Update for improved glue.

Change-Id: I73bb23644523e8ec19c51a3e3b9c5c4f7a98c558

14 years agoam 1aa32188: Add new native-plasma sample code.
Dianne Hackborn [Sat, 10 Jul 2010 00:03:10 +0000 (17:03 -0700)]
am 1aa32188: Add new native-plasma sample code.

Merge commit '1aa3218800a9d98c7b62450a3821b99b8b9588e0' into gingerbread-plus-aosp

* commit '1aa3218800a9d98c7b62450a3821b99b8b9588e0':
  Add new native-plasma sample code.

14 years agoAdd new native-plasma sample code.
Dianne Hackborn [Fri, 9 Jul 2010 18:48:23 +0000 (11:48 -0700)]
Add new native-plasma sample code.

This shows direct drawing to an ANativeWindow's bits.

Update the NDK API, and fix a bug in the native-activity app where it
would hang while exiting.

Change-Id: I4fa98d083405eb0d1b22b10a73a2ef18d45fdb59

14 years agoam 5ce45c93: Fix keycode
Ying Wang [Fri, 9 Jul 2010 22:15:22 +0000 (15:15 -0700)]
am 5ce45c93: Fix keycode

Merge commit '5ce45c93ad1dc5f3e836be865ca25a043f7f4ced' into gingerbread-plus-aosp

* commit '5ce45c93ad1dc5f3e836be865ca25a043f7f4ced':
  Fix keycode

14 years agoFix keycode
Ying Wang [Fri, 9 Jul 2010 22:04:40 +0000 (15:04 -0700)]
Fix keycode

4 new key codes were added since gingerbread.
bug: http://b/issue?id=2830562

Change-Id: I91a55ef6ca9244bc053e25b6dd8d514cb3f106e9

14 years agomerge from open-source master
The Android Open Source Project [Fri, 9 Jul 2010 21:42:33 +0000 (14:42 -0700)]
merge from open-source master

Change-Id: I8a67eacfb33430d61d738b588955148b2f11994c

14 years agoam f68d6af8: ndk: Add a test to check that prebuilt libraries work as expected.
David 'Digit' Turner [Fri, 9 Jul 2010 17:06:02 +0000 (10:06 -0700)]
am f68d6af8: ndk: Add a test to check that prebuilt libraries work as expected.

Merge commit 'f68d6af83f8f99714c139d867e8328f558480f28' into gingerbread-plus-aosp

* commit 'f68d6af83f8f99714c139d867e8328f558480f28':
  ndk: Add a test to check that prebuilt libraries work as expected.

14 years agondk: Add a test to check that prebuilt libraries work as expected.
David 'Digit' Turner [Fri, 9 Jul 2010 16:56:31 +0000 (09:56 -0700)]
ndk: Add a test to check that prebuilt libraries work as expected.

Change-Id: I7c0683ac1ee50bb62cc0f7ac22e839f749ec1cdf

14 years agoMerge "update 404'd source.android.com URLs"
Jean-Baptiste Queru [Thu, 8 Jul 2010 23:23:59 +0000 (16:23 -0700)]
Merge "update 404'd source.android.com URLs"

14 years agoam eefb5c2d: Merge "Update native_activity sample to use new glue code." into gingerbread
Dianne Hackborn [Thu, 8 Jul 2010 19:28:33 +0000 (12:28 -0700)]
am eefb5c2d: Merge "Update native_activity sample to use new glue code." into gingerbread

Merge commit 'eefb5c2dca087c2b0a0ef90e15db00fb5523d8af' into gingerbread-plus-aosp

* commit 'eefb5c2dca087c2b0a0ef90e15db00fb5523d8af':
  Update native_activity sample to use new glue code.

14 years agoMerge "Update native_activity sample to use new glue code." into gingerbread
Dianne Hackborn [Thu, 8 Jul 2010 19:25:41 +0000 (12:25 -0700)]
Merge "Update native_activity sample to use new glue code." into gingerbread

14 years agoUpdate native_activity sample to use new glue code.
Dianne Hackborn [Wed, 7 Jul 2010 21:33:00 +0000 (14:33 -0700)]
Update native_activity sample to use new glue code.

The native_activity sample is now built with the new threaded_app
glue code, removing all of the boiler-plate code from it.  This
adds the glue code (header and .a) to the NDK.

Change-Id: I2a7be473811f22f948dcda3da8034dd0bd62049d

14 years agoam ec87ca5f: am 34ca4b64: Merge "Add the support for the alarmManager and force the...
Yu Shan Emily Lau [Thu, 8 Jul 2010 18:33:29 +0000 (11:33 -0700)]
am ec87ca5f: am 34ca4b64: Merge "Add the support for the alarmManager and force the device to wake up." into froyo

Merge commit 'ec87ca5f3abb615d75ee68ad977b3a17c3c7d3ab' into gingerbread-plus-aosp

* commit 'ec87ca5f3abb615d75ee68ad977b3a17c3c7d3ab':
  Add the support for the alarmManager and force the device to wake up.

14 years agoam 34ca4b64: Merge "Add the support for the alarmManager and force the device to...
Yu Shan Emily Lau [Thu, 8 Jul 2010 18:31:07 +0000 (11:31 -0700)]
am 34ca4b64: Merge "Add the support for the alarmManager and force the device to wake up." into froyo

Merge commit '34ca4b646b20cc209b06fec482e6c77dbc92d220' into gingerbread

* commit '34ca4b646b20cc209b06fec482e6c77dbc92d220':
  Add the support for the alarmManager and force the device to wake up.

14 years agoMerge "Add the support for the alarmManager and force the device to wake up." into...
Yu Shan Emily Lau [Thu, 8 Jul 2010 18:28:33 +0000 (11:28 -0700)]
Merge "Add the support for the alarmManager and force the device to wake up." into froyo

14 years agoam d15a18bd: Merge "Remove C++ headers from the platform directories." into gingerbread
David 'Digit' Turner [Wed, 7 Jul 2010 21:22:27 +0000 (14:22 -0700)]
am d15a18bd: Merge "Remove C++ headers from the platform directories." into gingerbread

Merge commit 'd15a18bdd2762524d3aff505eea5bd7714b10a6c' into gingerbread-plus-aosp

* commit 'd15a18bdd2762524d3aff505eea5bd7714b10a6c':
  Remove C++ headers from the platform directories.

14 years agoMerge "Remove C++ headers from the platform directories." into gingerbread
David 'Digit' Turner [Wed, 7 Jul 2010 21:19:10 +0000 (14:19 -0700)]
Merge "Remove C++ headers from the platform directories." into gingerbread

14 years agoam 2708f19b: Merge "Update API level 9 sysroot to allow static C++ destructors to...
David 'Digit' Turner [Wed, 7 Jul 2010 21:16:52 +0000 (14:16 -0700)]
am 2708f19b: Merge "Update API level 9 sysroot to allow static C++ destructors to be called on dlclose()." into gingerbread

Merge commit '2708f19ba33163b1ac0c5ea2758d0c09d97e8cc0' into gingerbread-plus-aosp

* commit '2708f19ba33163b1ac0c5ea2758d0c09d97e8cc0':
  Update API level 9 sysroot to allow static C++ destructors to be called on dlclose().

14 years agoMerge "Update API level 9 sysroot to allow static C++ destructors to be called on...
David 'Digit' Turner [Wed, 7 Jul 2010 21:14:47 +0000 (14:14 -0700)]
Merge "Update API level 9 sysroot to allow static C++ destructors to be called on dlclose()." into gingerbread

14 years agoRemove C++ headers from the platform directories.
David 'Digit' Turner [Wed, 7 Jul 2010 19:53:45 +0000 (12:53 -0700)]
Remove C++ headers from the platform directories.

We now rely instead on the content of $NDK/sources/cxx-stl/system/include
that is automatically used if a module has C++ sources.

Change-Id: I4319d9260fcf9fb31c59c2f21ca64b536725d4f5

14 years agoAdd the support for the alarmManager and force the device to wake up.
Yu Shan Emily Lau [Fri, 2 Jul 2010 01:34:43 +0000 (18:34 -0700)]
Add the support for the alarmManager and force the device to wake up.

Change-Id: Ib4a2f9cb580eadf6771b103399e14f932d50cb1c

14 years agoam 02215b36: Update to use new looper API.
Dianne Hackborn [Wed, 7 Jul 2010 16:04:08 +0000 (09:04 -0700)]
am 02215b36: Update to use new looper API.

Merge commit '02215b36dde381f0b48ba51bfea405f5a6b01e46' into gingerbread-plus-aosp

* commit '02215b36dde381f0b48ba51bfea405f5a6b01e46':
  Update to use new looper API.

14 years agoUpdate to use new looper API.
Dianne Hackborn [Sat, 3 Jul 2010 01:54:33 +0000 (18:54 -0700)]
Update to use new looper API.

Also need to put back the stub Java class for now, as the
build system still seems to require it.

Change-Id: I31917a1fc7c0bf8cd928969125f94d55c59d42f8

14 years agomerge from open-source master
The Android Open Source Project [Fri, 2 Jul 2010 18:43:17 +0000 (11:43 -0700)]
merge from open-source master

Change-Id: I01fc38c3021027fcc3a3cea79b1c6564913caa9f

14 years agoCleaned up LunarLander sample
Christian Mehlmauer [Fri, 2 Jul 2010 14:20:49 +0000 (16:20 +0200)]
Cleaned up LunarLander sample

Change-Id: If2cc44c8312cebce170d07c34c64ea2ce1e5b7ab

14 years agoam 2c5db16b: Merge "Stub code no longer needed." into gingerbread
Dianne Hackborn [Fri, 2 Jul 2010 02:36:18 +0000 (19:36 -0700)]
am 2c5db16b: Merge "Stub code no longer needed." into gingerbread

Merge commit '2c5db16ba90b0ec5187dc0a02c4ba9e024cd397c' into gingerbread-plus-aosp

* commit '2c5db16ba90b0ec5187dc0a02c4ba9e024cd397c':
  Stub code no longer needed.

14 years agoMerge "Stub code no longer needed." into gingerbread
Dianne Hackborn [Fri, 2 Jul 2010 02:34:50 +0000 (19:34 -0700)]
Merge "Stub code no longer needed." into gingerbread

14 years agoStub code no longer needed.
Dianne Hackborn [Fri, 2 Jul 2010 02:27:06 +0000 (19:27 -0700)]
Stub code no longer needed.

Change-Id: I985acdba1dd1c0acf00d88d2851b5f604475bf4c

14 years agoam 2b352d76: Native activity now draws!
Dianne Hackborn [Fri, 2 Jul 2010 02:24:58 +0000 (19:24 -0700)]
am 2b352d76: Native activity now draws!

Merge commit '2b352d76d84817725bf530e7e33f3b47ffb15401' into gingerbread-plus-aosp

* commit '2b352d76d84817725bf530e7e33f3b47ffb15401':
  Native activity now draws!

14 years agoNative activity now draws!
Dianne Hackborn [Fri, 2 Jul 2010 01:47:16 +0000 (18:47 -0700)]
Native activity now draws!

Very simple and dumb, but we now get touch events and fill the
window with a color (using OpenGL) based on its location.

Change-Id: I6657d2bb013570238bc0fe639f33c59f1ab68872

14 years agoam 88510488: Update native_activity sample code to use ANativeWindow.
Dianne Hackborn [Thu, 1 Jul 2010 23:00:13 +0000 (16:00 -0700)]
am 88510488: Update native_activity sample code to use ANativeWindow.

Merge commit '88510488e99d02e3b778ae530bb6e1e6aee3a226' into gingerbread-plus-aosp

* commit '88510488e99d02e3b778ae530bb6e1e6aee3a226':
  Update native_activity sample code to use ANativeWindow.

14 years agoUpdate native_activity sample code to use ANativeWindow.
Dianne Hackborn [Thu, 1 Jul 2010 01:36:34 +0000 (18:36 -0700)]
Update native_activity sample code to use ANativeWindow.

We now get the native window to the engine, all ready for something
to be done with it.

Change-Id: Ie4537e505cdf8a2fffc28de82b7e3cda448fde41

14 years agoam 24ff9295: Merge "Add connectivity unit tests to test_defs.xml" into gingerbread
Xia Wang [Wed, 30 Jun 2010 00:29:49 +0000 (17:29 -0700)]
am 24ff9295: Merge "Add connectivity unit tests to test_defs.xml" into gingerbread

Merge commit '24ff92954baf143c31f7f8e260b2202f96f0663a' into gingerbread-plus-aosp

* commit '24ff92954baf143c31f7f8e260b2202f96f0663a':
  Add connectivity unit tests to test_defs.xml

14 years agoMerge "Add connectivity unit tests to test_defs.xml" into gingerbread
Xia Wang [Wed, 30 Jun 2010 00:25:01 +0000 (17:25 -0700)]
Merge "Add connectivity unit tests to test_defs.xml" into gingerbread

14 years agoAdd connectivity unit tests to test_defs.xml
Xia Wang [Tue, 29 Jun 2010 21:59:26 +0000 (14:59 -0700)]
Add connectivity unit tests to test_defs.xml

Change-Id: I15ecb95f7c534a9761cc8bbd16cd6ec661f7af5b

14 years agoam 21851dd5: Merge "Update to new native activity APIs." into gingerbread
Dianne Hackborn [Tue, 29 Jun 2010 19:18:54 +0000 (12:18 -0700)]
am 21851dd5: Merge "Update to new native activity APIs." into gingerbread

Merge commit '21851dd54f9b70091e441cfb4a1dea661a3f6a0d' into gingerbread-plus-aosp

* commit '21851dd54f9b70091e441cfb4a1dea661a3f6a0d':
  Update to new native activity APIs.

14 years agoMerge "Update to new native activity APIs." into gingerbread
Dianne Hackborn [Tue, 29 Jun 2010 19:17:28 +0000 (12:17 -0700)]
Merge "Update to new native activity APIs." into gingerbread

14 years agoam 1bd47c04: am e46d0514: Merge "Doc change: Add index page pointing to downloadable...
Dirk Dougherty [Tue, 29 Jun 2010 18:24:56 +0000 (11:24 -0700)]
am 1bd47c04: am e46d0514: Merge "Doc change: Add index page pointing to downloadable user\'s guide source files." into froyo

Merge commit '1bd47c04baa9c5b435bc7677eb7663a4fa19e6ac' into gingerbread-plus-aosp

* commit '1bd47c04baa9c5b435bc7677eb7663a4fa19e6ac':
  Doc change: Add index page pointing to downloadable user's guide source files.

14 years agoam e46d0514: Merge "Doc change: Add index page pointing to downloadable user\'s guide...
Dirk Dougherty [Tue, 29 Jun 2010 18:22:16 +0000 (11:22 -0700)]
am e46d0514: Merge "Doc change: Add index page pointing to downloadable user\'s guide source files." into froyo

Merge commit 'e46d051439f8d9fdee102b6dbc43caa3357b073f' into gingerbread

* commit 'e46d051439f8d9fdee102b6dbc43caa3357b073f':
  Doc change: Add index page pointing to downloadable user's guide source files.

14 years agoMerge "Doc change: Add index page pointing to downloadable user's guide source files...
Dirk Dougherty [Tue, 29 Jun 2010 18:19:12 +0000 (11:19 -0700)]
Merge "Doc change: Add index page pointing to downloadable user's guide source files." into froyo

14 years agoDoc change: Add index page pointing to downloadable user's guide source files.
Dirk Dougherty [Wed, 9 Jun 2010 18:54:43 +0000 (11:54 -0700)]
Doc change: Add index page pointing to downloadable user's guide source files.

Change-Id: Ia02cb211fc24f1293b66310c80e18d4ad8185173

14 years agoUpdate to new native activity APIs.
Dianne Hackborn [Mon, 28 Jun 2010 22:38:48 +0000 (15:38 -0700)]
Update to new native activity APIs.

Change-Id: Id2a32fd0ed0de39b2f266216d5b3d903156fb761

14 years agoupdate 404'd source.android.com URLs
Chris Peterson [Sat, 26 Jun 2010 00:32:07 +0000 (17:32 -0700)]
update 404'd source.android.com URLs

Change-Id: I088f32ca3a8b8568230e068a78b78dee7d6e4924

14 years agoUpdate API level 9 sysroot to allow static C++ destructors to be called on dlclose().
David 'Digit' Turner [Fri, 25 Jun 2010 23:17:58 +0000 (16:17 -0700)]
Update API level 9 sysroot to allow static C++ destructors to be called on dlclose().

This introduces crtbegin_so.o and crtend_so.o and also requires a corresponding
change in the NDK build scripts to use them.

Also add a small test under 'tests/dlclose-destruction' to check that.
Note that this is not a sample (i.e. Android application) per se.

Change-Id: Icf25836363a3ed59310e579ce990aeca868e70e4

14 years agomerge from froyo-plus-aosp
The Android Open Source Project [Fri, 25 Jun 2010 16:46:08 +0000 (09:46 -0700)]
merge from froyo-plus-aosp

Change-Id: I1c7b0ce913903088729cce23fa0e8f39c9e8c15d

14 years agoam 3bacdf93: am 1a132581: Merge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the...
Yu Shan Emily Lau [Thu, 24 Jun 2010 22:43:28 +0000 (15:43 -0700)]
am 3bacdf93: am 1a132581: Merge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out." into froyo

Merge commit '3bacdf93002237f35530c1e756481db429285a96' into gingerbread-plus-aosp

* commit '3bacdf93002237f35530c1e756481db429285a96':
  Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out.

14 years agoam 1a132581: Merge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey...
Yu Shan Emily Lau [Thu, 24 Jun 2010 22:42:29 +0000 (15:42 -0700)]
am 1a132581: Merge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out." into froyo

Merge commit '1a132581a5ce6188989d8522d227392c05cb42f6' into froyo-plus-aosp

* commit '1a132581a5ce6188989d8522d227392c05cb42f6':
  Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out.

14 years agoam 1a132581: Merge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey...
Yu Shan Emily Lau [Thu, 24 Jun 2010 22:41:10 +0000 (15:41 -0700)]
am 1a132581: Merge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out." into froyo

Merge commit '1a132581a5ce6188989d8522d227392c05cb42f6' into gingerbread

* commit '1a132581a5ce6188989d8522d227392c05cb42f6':
  Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out.

14 years agoMerge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow...
Yu Shan Emily Lau [Thu, 24 Jun 2010 22:30:29 +0000 (15:30 -0700)]
Merge "Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out." into froyo

14 years agoAdd the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the...
Yu Shan Emily Lau [Thu, 24 Jun 2010 21:20:16 +0000 (14:20 -0700)]
Add the AUTOTEST_TEST_BEGIN_DELAY keyword to the scripted monkey which allow the power log to start 10 seconds after the event was send out.

Change-Id: I3d98d56128b8a96ba712c7e11280e3ab88a7cc4a

14 years agomerge from open-source master
The Android Open Source Project [Thu, 24 Jun 2010 21:02:21 +0000 (14:02 -0700)]
merge from open-source master

Change-Id: Ie72de601744653bcd7e9fa3debe71d3c8f2fe591

14 years agoMoving SDK howto docs from development.git into sdk.git.
Raphael Moll [Wed, 23 Jun 2010 22:59:59 +0000 (15:59 -0700)]
Moving SDK howto docs from development.git into sdk.git.

See Change I7827d3f3cc6b8ba96822170949618dc75d879d28 for
the CL that adds them back in sdk.git

Change-Id: I37a5b27875fc3ed6b52202ab8435888d38644ca5

14 years agoam 9e1400cd: Do not compress resources.arsc in android.jar
Kenny Root [Wed, 23 Jun 2010 20:54:32 +0000 (13:54 -0700)]
am 9e1400cd: Do not compress resources.arsc in android.jar

Merge commit '9e1400cdae7f3732808120db8b83de7b252340ca' into gingerbread-plus-aosp

* commit '9e1400cdae7f3732808120db8b83de7b252340ca':
  Do not compress resources.arsc in android.jar

14 years agoDo not compress resources.arsc in android.jar
Kenny Root [Wed, 23 Jun 2010 20:38:45 +0000 (13:38 -0700)]
Do not compress resources.arsc in android.jar

In framework-res.apk and in applications, resources are always stored in
zip files instead of compressed so that they may be accessed via mmap()
instead of needing to decompress them first.

This change makes sure the SDK's android.jar has the same behavior.

Change-Id: Ied881c34dca86ff5b5bd2ccfa4e316ae590ca473

14 years agoam e660fef5: am 81b9c9d8: docs: fix doc link bug
Scott Main [Wed, 23 Jun 2010 01:43:35 +0000 (18:43 -0700)]
am e660fef5: am 81b9c9d8: docs: fix doc link bug

Merge commit 'e660fef5523dc8ac3ee57fb4503ca53b922a531d' into gingerbread-plus-aosp

* commit 'e660fef5523dc8ac3ee57fb4503ca53b922a531d':
  docs: fix doc link bug

14 years agoam 81b9c9d8: docs: fix doc link bug
Scott Main [Wed, 23 Jun 2010 01:42:23 +0000 (18:42 -0700)]
am 81b9c9d8: docs: fix doc link bug

Merge commit '81b9c9d8ea3f6b13f03249b437ab5d51cdcb5590' into froyo-plus-aosp

* commit '81b9c9d8ea3f6b13f03249b437ab5d51cdcb5590':
  docs: fix doc link bug

14 years agoam 81b9c9d8: docs: fix doc link bug
Scott Main [Wed, 23 Jun 2010 01:41:36 +0000 (18:41 -0700)]
am 81b9c9d8: docs: fix doc link bug

Merge commit '81b9c9d8ea3f6b13f03249b437ab5d51cdcb5590' into gingerbread

* commit '81b9c9d8ea3f6b13f03249b437ab5d51cdcb5590':
  docs: fix doc link bug

14 years agoam 259651e2: Merge "add test def for calculator" into gingerbread
Yu Shan Emily Lau [Tue, 22 Jun 2010 18:42:26 +0000 (11:42 -0700)]
am 259651e2: Merge "add test def for calculator" into gingerbread

Merge commit '259651e2de730b513003cb0c2f966f53b9dffb5e' into gingerbread-plus-aosp

* commit '259651e2de730b513003cb0c2f966f53b9dffb5e':
  add test def for calculator

14 years agoMerge "add test def for calculator" into gingerbread
Yu Shan Emily Lau [Tue, 22 Jun 2010 18:41:10 +0000 (11:41 -0700)]
Merge "add test def for calculator" into gingerbread

14 years agoam 5468d768: Update native APIs for events.
Dianne Hackborn [Tue, 22 Jun 2010 18:24:15 +0000 (11:24 -0700)]
am 5468d768: Update native APIs for events.

Merge commit '5468d768716a4a9de1012067d89908ba4893f9c8' into gingerbread-plus-aosp

* commit '5468d768716a4a9de1012067d89908ba4893f9c8':
  Update native APIs for events.

14 years agodocs: fix doc link bug
Scott Main [Tue, 22 Jun 2010 17:37:30 +0000 (10:37 -0700)]
docs: fix doc link bug

bug: 2788457

Change-Id: Ia4ad8cfcee24db2e7cb509952c606508c2fd01c9

14 years agoUpdate native APIs for events.
Dianne Hackborn [Sat, 19 Jun 2010 01:12:05 +0000 (18:12 -0700)]
Update native APIs for events.

Copy current native event APIs over; start updating
sample code to use them.

The native activity sample is now much more real, creating
its own worker thread, which now monitors and prints any
incoming input events.

Note that due to the lack of default key handling, pressing
back no longer works!  Will be fixed in a bit.  This code
also needs to be refactored to put the engine part into
a separate source file.

Change-Id: I2ab3e6d9f840b99ec9a05bbc0d2cd9314beb23d7

14 years agoadd test def for calculator
Guang Zhu [Mon, 21 Jun 2010 23:55:00 +0000 (16:55 -0700)]
add test def for calculator

Change-Id: I2501f0699f6eb286037ed314c30be4818a25c643

14 years agomerge from froyo-plus-aosp
The Android Open Source Project [Mon, 21 Jun 2010 18:00:40 +0000 (11:00 -0700)]
merge from froyo-plus-aosp

Change-Id: Icd2fa05c77fd2ec7c878520647e0024bf89b0504

14 years agomerge from open-source master
The Android Open Source Project [Fri, 18 Jun 2010 18:33:52 +0000 (11:33 -0700)]
merge from open-source master

Change-Id: I4e06b684dd46c317e1c206e584050dbee20be281

14 years agoam fdbc1d7b: remove apkbuilder.jar from the sdk build.
Xavier Ducrohet [Thu, 17 Jun 2010 01:26:09 +0000 (18:26 -0700)]
am fdbc1d7b: remove apkbuilder.jar from the sdk build.

Merge commit 'fdbc1d7bc1aa73c095b93808bd15b6eca02ea7c9' into gingerbread-plus-aosp

* commit 'fdbc1d7bc1aa73c095b93808bd15b6eca02ea7c9':
  remove apkbuilder.jar from the sdk build.

14 years agoremove apkbuilder.jar from the sdk build.
Xavier Ducrohet [Wed, 16 Jun 2010 01:04:44 +0000 (18:04 -0700)]
remove apkbuilder.jar from the sdk build.

Change-Id: I76f979a0d3aa196f25e8a5f2522437e26655a7d0

14 years agoremove apkbuilder.jar from the sdk build.
Xavier Ducrohet [Wed, 16 Jun 2010 01:04:44 +0000 (18:04 -0700)]
remove apkbuilder.jar from the sdk build.

Change-Id: I82cca5c159c1f3210b98deebfd78e2844728b2ac

14 years agoam 442396be: remove jarutils from the sdk packaging.
Xavier Ducrohet [Tue, 15 Jun 2010 22:36:47 +0000 (15:36 -0700)]
am 442396be: remove jarutils from the sdk packaging.

Merge commit '442396be27a82850f99d4a891d02b8c95c9c1ef1' into gingerbread-plus-aosp

* commit '442396be27a82850f99d4a891d02b8c95c9c1ef1':
  remove jarutils from the sdk packaging.

14 years agoremove jarutils from the sdk packaging.
Xavier Ducrohet [Tue, 15 Jun 2010 20:00:13 +0000 (13:00 -0700)]
remove jarutils from the sdk packaging.

Change-Id: I49beab11b49f09451cbea9bfbc88aa522e7dbd85

14 years agomerge from open-source master
The Android Open Source Project [Tue, 15 Jun 2010 22:02:27 +0000 (15:02 -0700)]
merge from open-source master

Change-Id: I3e12f866966fda80db5a0795eba9ff82bfe6547d

14 years agoremove jarutils from the sdk packaging.
Xavier Ducrohet [Tue, 15 Jun 2010 20:00:13 +0000 (13:00 -0700)]
remove jarutils from the sdk packaging.

Change-Id: Ic3c91ff5e20a5bf6b7c3ad11eb6e6f4250c7613d

14 years agoam 0e968fa2: Merge "Workaround for package-private framework tests in runtest." into...
Brett Chabot [Tue, 15 Jun 2010 17:49:09 +0000 (10:49 -0700)]
am 0e968fa2: Merge "Workaround for package-private framework tests in runtest." into gingerbread

Merge commit '0e968fa2eec9dcdbb0ab075be9489cc9e4ad9c99' into gingerbread-plus-aosp

* commit '0e968fa2eec9dcdbb0ab075be9489cc9e4ad9c99':
  Workaround for package-private framework tests in runtest.

14 years agoMerge "Workaround for package-private framework tests in runtest." into gingerbread
Brett Chabot [Tue, 15 Jun 2010 17:46:32 +0000 (10:46 -0700)]
Merge "Workaround for package-private framework tests in runtest." into gingerbread

14 years agoWorkaround for package-private framework tests in runtest.
Brett Chabot [Mon, 14 Jun 2010 22:19:25 +0000 (15:19 -0700)]
Workaround for package-private framework tests in runtest.

Checks if the test to run is a framework test based on path, and if so
disables the davlik verifier by writing to /data/local.prop and
rebooting device.

Change-Id: Ibf94fb921662b5ddf6136dd12360d5de83a3a284

14 years agomerge from froyo-plus-aosp
The Android Open Source Project [Mon, 14 Jun 2010 18:28:22 +0000 (11:28 -0700)]
merge from froyo-plus-aosp

Change-Id: I1f4c76c89aad748b006cfc1370a767782e4ca3e7

14 years agoam 69825fa9: Merge "Added test definitions for framework UI and Utils libs." into...
Jeff Brown [Mon, 14 Jun 2010 18:05:05 +0000 (11:05 -0700)]
am 69825fa9: Merge "Added test definitions for framework UI and Utils libs." into kraken

Merge commit '69825fa9b898067f07abce3c6e63c6ac8fe89fd6' into gingerbread-plus-aosp

* commit '69825fa9b898067f07abce3c6e63c6ac8fe89fd6':
  Added test definitions for framework UI and Utils libs.

14 years agoMerge "Added test definitions for framework UI and Utils libs." into kraken
Jeff Brown [Mon, 14 Jun 2010 18:01:17 +0000 (11:01 -0700)]
Merge "Added test definitions for framework UI and Utils libs." into kraken

14 years agomerge from open-source master
The Android Open Source Project [Mon, 14 Jun 2010 17:49:52 +0000 (10:49 -0700)]
merge from open-source master

Change-Id: I7d0f3b08f6e632b689c870017374741a544bc7e8

14 years agomerge from open-source master
The Android Open Source Project [Mon, 14 Jun 2010 17:01:48 +0000 (10:01 -0700)]
merge from open-source master

Change-Id: Icb039ab90287961b1ad358b78eaead4a9aa2ae59

14 years agomerge from open-source master
The Android Open Source Project [Mon, 14 Jun 2010 16:31:39 +0000 (09:31 -0700)]
merge from open-source master

Change-Id: I6d060597c1dffd56aacc0072104464ad651ef877

14 years agomerge from open-source master
The Android Open Source Project [Mon, 14 Jun 2010 16:26:36 +0000 (09:26 -0700)]
merge from open-source master

Change-Id: Iedee6a43e23821175148324bc2502a33112e2d59

14 years agoMerge "Cleaned up Samples by removing unsed imports and variables. Changed deprecated...
Jean-Baptiste Queru [Mon, 14 Jun 2010 16:20:43 +0000 (09:20 -0700)]
Merge "Cleaned up Samples by removing unsed imports and variables. Changed deprecated Config.LOGD to Config.DEBUG Removed unnecessary whitespaces"

14 years agoAdded test definitions for framework UI and Utils libs.
Jeff Brown [Mon, 14 Jun 2010 03:09:33 +0000 (20:09 -0700)]
Added test definitions for framework UI and Utils libs.

Change-Id: Idf1a5741cd60e7402d950a8080bcd5dcbc12be09

14 years agoCleaned up Samples by removing unsed imports and variables.
Christian Mehlmauer [Thu, 20 May 2010 19:02:04 +0000 (21:02 +0200)]
Cleaned up Samples by removing unsed imports and variables.
Changed deprecated Config.LOGD to Config.DEBUG
Removed unnecessary whitespaces

Change-Id: I01414dd83eb6f9a41e56762dd7fc00e7f1115039

14 years agoMerge "Reduced warnings by removing unused imports, unused variables and adding type...
Romain Guy [Sat, 12 Jun 2010 01:37:31 +0000 (18:37 -0700)]
Merge "Reduced warnings by removing unused imports, unused variables and adding type arguments"