OSDN Git Service

android-x86/development.git
13 years agochange the tab selector icons
Nick Kralevich [Tue, 12 Oct 2010 18:02:03 +0000 (11:02 -0700)]
change the tab selector icons

Change-Id: Ia12adb2e72d6b8d444fd179970ed4b27a9fa3976

13 years agoAdd initial support for saved vs non-saved tags.
Nick Kralevich [Tue, 12 Oct 2010 00:52:43 +0000 (17:52 -0700)]
Add initial support for saved vs non-saved tags.

Get rid of the third "MyTag" column.  This isn't currently
being used.

Change-Id: Id35074d939e1373f0998e5502eb9cfc9c86ecca5

13 years agoMerge "cleanup unused classes, show date in tag list." into gingerbread
Nick Kralevich [Tue, 12 Oct 2010 18:01:05 +0000 (11:01 -0700)]
Merge "cleanup unused classes, show date in tag list." into gingerbread

13 years agoMerge "ndk: Add missing OpenSLES headers and libraries." into gingerbread
David 'Digit' Turner [Tue, 12 Oct 2010 17:31:53 +0000 (10:31 -0700)]
Merge "ndk: Add missing OpenSLES headers and libraries." into gingerbread

13 years agondk: Add missing OpenSLES headers and libraries.
David 'Digit' Turner [Fri, 8 Oct 2010 16:35:33 +0000 (18:35 +0200)]
ndk: Add missing OpenSLES headers and libraries.

Change-Id: I5444f8701a2b8ad8e99fffc6906bad1bf101530f

13 years agocleanup unused classes, show date in tag list.
Nick Kralevich [Tue, 12 Oct 2010 00:28:21 +0000 (17:28 -0700)]
cleanup unused classes, show date in tag list.

Change-Id: Ie9b1eee3606d7d1cfaff73723ff40c7570a6b1c9

13 years agoMerge "Update OBB sample to revised API" into gingerbread
Kenny Root [Tue, 12 Oct 2010 00:28:20 +0000 (17:28 -0700)]
Merge "Update OBB sample to revised API" into gingerbread

13 years agoUpdate OBB sample to revised API
Kenny Root [Mon, 11 Oct 2010 20:19:57 +0000 (13:19 -0700)]
Update OBB sample to revised API

Change-Id: Idc724170a9cbb6a94523b406b8a1f91fcf8293a4

13 years agoget rid of sql finalizer error messages.
Nick Kralevich [Mon, 11 Oct 2010 23:10:04 +0000 (16:10 -0700)]
get rid of sql finalizer error messages.

Change-Id: I5613734b78f861237b435079742528b9623c97de

13 years agobytes should be a blob.
Nick Kralevich [Mon, 11 Oct 2010 22:22:58 +0000 (15:22 -0700)]
bytes should be a blob.

Change-Id: I8bbf6aab8ec67d60cb6ac47cd273aec8814d2d6a

13 years agoMerge "ndk: remove undefined symbols from system headers" into gingerbread
David 'Digit' Turner [Mon, 11 Oct 2010 13:02:15 +0000 (06:02 -0700)]
Merge "ndk: remove undefined symbols from system headers" into gingerbread

13 years agoUpdate win_sdk to put binaries in SDK/platform-tools.
Raphael [Fri, 8 Oct 2010 22:41:01 +0000 (15:41 -0700)]
Update win_sdk to put binaries in SDK/platform-tools.

Change-Id: I8fe9df75ceaf04aa1935341e51bf6f3edffae9e4

13 years agoMerge "Update NDK with recent changes." into gingerbread
Jeff Brown [Fri, 8 Oct 2010 19:45:05 +0000 (12:45 -0700)]
Merge "Update NDK with recent changes." into gingerbread

13 years agondk: remove undefined symbols from system headers
David 'Digit' Turner [Fri, 8 Oct 2010 15:07:39 +0000 (17:07 +0200)]
ndk: remove undefined symbols from system headers

This change removes the declaration of functions that are not
implemented by our various versions of our C library.

The corresponding declarations are moved inside #if 0 .. #endif
blocks (so it becomes easy to remember that they are missing)

Also refresh the headers a little (i.e. adding a few missing decl
and macros, remove C++ comments, etc)

See http://code.google.com/p/android/issues/detail?id=7807

Change-Id: I4ae1b1f3a181419eee2004c41b54768cc15e896f
NOTE: The missing decl are still there but encased in #if 0 .. #endif
      blocks (to make it easier to implement them later). There are
      a few exceptions in order to build STLport and libstdc++-v3
      properly.

13 years agoMerge "ndk: Update platform system libraries." into gingerbread
David 'Digit' Turner [Fri, 8 Oct 2010 07:19:10 +0000 (00:19 -0700)]
Merge "ndk: Update platform system libraries." into gingerbread

13 years agoUpdate NDK with recent changes.
Jeff Brown [Thu, 7 Oct 2010 21:38:12 +0000 (14:38 -0700)]
Update NDK with recent changes.

Includes bitmap.h which was missing from v9 but was previously in v8.
Also includes new obb stuff and other things that have gotten out of sync.

Change-Id: I6cf9ccdbc9d3271a34a1cf8a1de78aa8a1757276

13 years agoSet monkey process name
Ying Wang [Thu, 7 Oct 2010 20:04:24 +0000 (13:04 -0700)]
Set monkey process name

So you can find it easily with "ps" or "top".

Change-Id: Id52cb8bb1680bd2cc24043d08a94f0a304f1e436

13 years agondk: Update platform system libraries.
David 'Digit' Turner [Thu, 7 Oct 2010 09:17:39 +0000 (11:17 +0200)]
ndk: Update platform system libraries.

This change updates various system libraries to reflect changes that
happened during distinct platform releases. All details are in the
file bionic/libc/docs/CHANGES.TXT, but the summary is:

API level 5:
    pthread.h:
        pthread_mutex_lock_timeout_np()
        pthread_cond_timedwait_monotonic_np()
        pthread_cond_timedwait_relative_np()

API level 8:
    pthread.h:
        pthread_condattr_init()
        pthread_condattr_destroy()
        pthread_condattr_setpshared()
        pthread_condattr_getpshared()

    dlfcn.h:
        dladdr()

    sched.h:
        clone()

    signal.h:
        killpg()

    stdio.h:
        fdprintf()
        vfdprintf()

    unistd.h:
        getusershell()
        setusershell()
        endusershell()

    wchar.h:
        mbstowcs()
        wcstombs()

    time.h:
        timezone
        daylight

    plus symbols from new headers: <fts.h>, <regex.h>, <err.h>, <warn.h>

Change-Id: I7ff1ffa2cb37b71473b1d137c7799f17d644ab63

13 years agoShow 'Save tag' dialog even if the screen is turned off
Anatol Pomazau [Wed, 6 Oct 2010 00:39:05 +0000 (17:39 -0700)]
Show 'Save tag' dialog even if the screen is turned off

Change-Id: I7d8b2fa74525e81db1743bf3e4283778192fc047

13 years agoMore data for testing.
Nick Kralevich [Tue, 5 Oct 2010 23:28:46 +0000 (16:28 -0700)]
More data for testing.

I managed to extract data from a real NFC tag.  Make that
data available for unittests / other testing.

Change-Id: I99cd8d6a32dc20fd7e33191f86def71236474d9a

13 years agoDismiss "Save" dialog on activity stop
Anatol Pomazau [Tue, 5 Oct 2010 23:32:43 +0000 (16:32 -0700)]
Dismiss "Save" dialog on activity stop

Change-Id: I0e63b679c9677e50f7b5b6a20c9eb840f983aa18

13 years agoHave TagBroadcastReceiver start the SaveTag activity.
Nick Kralevich [Tue, 5 Oct 2010 22:26:04 +0000 (15:26 -0700)]
Have TagBroadcastReceiver start the SaveTag activity.

Change-Id: I6dc8757ca7eec87efe622b0b2688dd29c5883185

13 years agonew icon.
Nick Kralevich [Tue, 5 Oct 2010 19:44:50 +0000 (12:44 -0700)]
new icon.

Change-Id: I17751bbd0dc9d900002ef68ee51a4ddaf1600281

13 years agoMerge "new SaveTag activity, additional utilities" into gingerbread
Nick Kralevich [Tue, 5 Oct 2010 19:22:20 +0000 (12:22 -0700)]
Merge "new SaveTag activity, additional utilities" into gingerbread

13 years agoMerge "New API demo showing different screen orientation options." into gingerbread
Dianne Hackborn [Mon, 4 Oct 2010 21:53:33 +0000 (14:53 -0700)]
Merge "New API demo showing different screen orientation options." into gingerbread

13 years agonew SaveTag activity, additional utilities
Nick Kralevich [Mon, 4 Oct 2010 16:34:39 +0000 (09:34 -0700)]
new SaveTag activity, additional utilities

The SaveTag activity will receive an intent with the
contents of the NdefRecord, and will be responsible
for commiting that record to the database.

Add NdefUtil, which can convert an NdefRecord
to a URI, and vise-versa.

Change-Id: Icf8682a00774da6e246961d34de5bc5baa7550cb

13 years agoNew API demo showing different screen orientation options.
Dianne Hackborn [Sat, 2 Oct 2010 23:56:56 +0000 (16:56 -0700)]
New API demo showing different screen orientation options.

Change-Id: I75b206f86ee87b50cccc5e23140d55bd566781cd

13 years agoMake unittests work, new TagBroadcastReceiver
Nick Kralevich [Fri, 1 Oct 2010 22:43:07 +0000 (15:43 -0700)]
Make unittests work, new TagBroadcastReceiver

Change-Id: I5a3a1938a7fb91c8114447d24427f2c263bda5a3

13 years agoUpdate Monkey to new StrictMode API.
Brad Fitzpatrick [Fri, 1 Oct 2010 17:46:17 +0000 (10:46 -0700)]
Update Monkey to new StrictMode API.

Change-Id: I0f2e90496c4dece8ee3766170d8a1fe2d22a7ff4

13 years agoMerge "update required permissions." into gingerbread
Nick Kralevich [Fri, 1 Oct 2010 16:44:27 +0000 (09:44 -0700)]
Merge "update required permissions." into gingerbread

13 years agoMerge "Don't send non-existent system keys." into gingerbread
Ying Wang [Fri, 1 Oct 2010 16:42:13 +0000 (09:42 -0700)]
Merge "Don't send non-existent system keys." into gingerbread

13 years agoupdate required permissions.
Nick Kralevich [Fri, 1 Oct 2010 16:30:20 +0000 (09:30 -0700)]
update required permissions.

Change-Id: I49fb855c62aa1a11c8cbf7645aa4dbe2fa18faf3

13 years agoMerge "Improve touch paint sample to use geometrical touch width." into gingerbread
Jeff Brown [Thu, 30 Sep 2010 22:58:59 +0000 (15:58 -0700)]
Merge "Improve touch paint sample to use geometrical touch width." into gingerbread

13 years agoImprove touch paint sample to use geometrical touch width.
Jeff Brown [Thu, 30 Sep 2010 03:51:48 +0000 (20:51 -0700)]
Improve touch paint sample to use geometrical touch width.

Added multitouch support.
Fixed the trackball based drawing.

Change-Id: I15d9c5c4ac26a83f476f98c1f2ef3a5841e2ffbd

13 years agoinitial checkin. Needs lots of love.
Nick Kralevich [Thu, 30 Sep 2010 21:14:17 +0000 (14:14 -0700)]
initial checkin.  Needs lots of love.

Change-Id: I126e355af94915d60d7a97bc3bee84e0a2ad61d4

13 years agoIntegrate sdk.atree changes from master. DO NOT MERGE
Xavier Ducrohet [Mon, 27 Sep 2010 20:58:45 +0000 (13:58 -0700)]
Integrate sdk.atree changes from  DO NOT MERGE

- Move adb to the platform-tools.
- Update the windows build for it.
- Split the tools component from sdk.atre into sdk/build/tools.atree

Change-Id: I75608f12d6e1d8bc0f470e3ca26c7e550cfdcbd6

13 years agoMerge "Add OBB usage example" into gingerbread
Kenny Root [Thu, 30 Sep 2010 00:19:14 +0000 (17:19 -0700)]
Merge "Add OBB usage example" into gingerbread

13 years agoAdd OBB usage example
Kenny Root [Tue, 10 Aug 2010 00:25:00 +0000 (17:25 -0700)]
Add OBB usage example

Change-Id: I7da5ac0009cb32829e7c6470c0a60ebff2988905

13 years agoDon't send non-existent system keys.
Ying Wang [Wed, 29 Sep 2010 01:26:18 +0000 (18:26 -0700)]
Don't send non-existent system keys.

Send only if the system key physically exists.

Change-Id: I8fa102db679c55e5bfba1c9a68ecf2bc196021cd

13 years agoGenericize strings with SD card references.
Eric Fischer [Tue, 28 Sep 2010 23:31:58 +0000 (16:31 -0700)]
Genericize strings with SD card references.

Change-Id: Ife7f7178b7ba11650bb81a6afc61e70e4b8a7b4f

13 years agoreconcile froyo-release into gingerbread
Jean-Baptiste Queru [Mon, 27 Sep 2010 00:28:54 +0000 (17:28 -0700)]
reconcile froyo-release into gingerbread

Change-Id: I0cd475594cd7697ee681bfc7eb76d61bec236417

13 years agoMerge "Update prebuilt library test." into gingerbread
David 'Digit' Turner [Fri, 24 Sep 2010 08:12:54 +0000 (01:12 -0700)]
Merge "Update prebuilt library test." into gingerbread

13 years agoPrepare for a new IActivityController method.
Dianne Hackborn [Thu, 23 Sep 2010 21:48:24 +0000 (14:48 -0700)]
Prepare for a new IActivityController method.

Change-Id: I30823fe0c06aef35a2773760ec938e7979cd1037

13 years agoMerge "Unify NDK platform headers." into gingerbread
David 'Digit' Turner [Thu, 23 Sep 2010 14:35:51 +0000 (07:35 -0700)]
Merge "Unify NDK platform headers." into gingerbread

13 years agoUnify NDK platform headers.
David 'Digit' Turner [Wed, 22 Sep 2010 16:04:36 +0000 (18:04 +0200)]
Unify NDK platform headers.

This commit removes duplication of system headers per platform, i.e. remove
copies of common headers like <stdlib.h> from arch-arm/usr/include and arch-x86/usr/include
and move them to a common include directory. More specifically:

- common headers:        android-N/arch-A/usr/include --> android-N/include
- arch-specific headers: android-N/arch-A/usr-include --> android-N/arch-A/include
- arch-specific libs:    android-N/arch-A/usr/lib     --> android-N/arch-A/lib

Change-Id: Ifdba5038d108901931f3e3a7c14ebe6270d2d276

NOTE: This also contains careful separation of API-level-specific headers.
      For example, platforms/android-5/include/pthread.h contains new function
      declarations that are not available when using platforms/android-3/include/pthread.h

NOTE: The NDK's build-platforms.sh script has been updated to understand the new
      layout. This change in develeopment/ndk does not change the layout of
      platform files under $NDK/platforms after build-platforms.sh is called.

13 years agoUpdate prebuilt library test.
David 'Digit' Turner [Wed, 22 Sep 2010 13:11:57 +0000 (15:11 +0200)]
Update prebuilt library test.

This is to reflect the simplification in prebuilt support.
1/ LOCAL_SRC_FILES is relative to LOCAL_PATH, like with other module types
2/ no need for LOCAL_PREBUILTS

Change-Id: If7302fe355cb25a446e31c20015098db75c00c02

13 years agoMerge "Change hosttestlib to use ddm-prebuilt." into gingerbread
Brett Chabot [Tue, 21 Sep 2010 21:28:26 +0000 (14:28 -0700)]
Merge "Change hosttestlib to use ddm-prebuilt." into gingerbread

13 years agoDO NOT MERGE Classpath cleanup in libcore
Andy Stadler [Tue, 21 Sep 2010 21:07:22 +0000 (14:07 -0700)]
DO NOT MERGE Classpath cleanup in libcore

* libcore/security no longer exists
* many other dirs under libcore had no java code

Change-Id: I1fcfda6ce769e0d9fbd4893c46bbded586c78251

13 years agoChange hosttestlib to use ddm-prebuilt.
Brett Chabot [Wed, 28 Jul 2010 00:57:38 +0000 (17:57 -0700)]
Change hosttestlib to use ddm-prebuilt.

Change-Id: I9124f34e6ba5559afc9a4bf9b5c70690385db11a

13 years agoCleanups for eclipse classpath DO NOT MERGE
Andy Stadler [Fri, 17 Sep 2010 22:59:20 +0000 (15:59 -0700)]
Cleanups for eclipse classpath DO NOT MERGE

Change-Id: Ic4ab8299eb2e17f01346887d22620c0f23399328

13 years agoMerge "Update NDK headers and samples to sync up with looper API changes." into ginge...
Jeff Brown [Tue, 14 Sep 2010 22:27:41 +0000 (15:27 -0700)]
Merge "Update NDK headers and samples to sync up with looper API changes." into gingerbread

13 years agoUpdate NDK headers and samples to sync up with looper API changes.
Jeff Brown [Tue, 14 Sep 2010 06:57:28 +0000 (23:57 -0700)]
Update NDK headers and samples to sync up with looper API changes.

Change-Id: I7082603bf280888be90dc4df687521aaae9b1d02

13 years agoam 42d3a4ae: Adding CrossCompatibility sample app.
Megha Joshi [Tue, 14 Sep 2010 00:38:43 +0000 (17:38 -0700)]
am 42d3a4ae: Adding CrossCompatibility sample app.

Merge commit '42d3a4ae1431fb3f02ac212000e8cdfb6f21e226' into gingerbread

* commit '42d3a4ae1431fb3f02ac212000e8cdfb6f21e226':
  Adding CrossCompatibility sample app.

13 years agoAdding CrossCompatibility sample app.
Megha Joshi [Tue, 17 Aug 2010 20:56:59 +0000 (13:56 -0700)]
Adding CrossCompatibility sample app.

Change-Id: I565584ea53212f61a9fbbb44e50da59f4ba06fff

13 years agoam e55fc016: Merge "Use remote_api for shell access on developer.android.com." into...
Trevor Johns [Fri, 10 Sep 2010 19:33:57 +0000 (12:33 -0700)]
am e55fc016: Merge "Use remote_api for shell access on developer.android.com." into froyo

Merge commit 'e55fc016a6e40edd456c0d240d06689d84a7127b' into gingerbread

* commit 'e55fc016a6e40edd456c0d240d06689d84a7127b':
  Use remote_api for shell access on developer.android.com.

13 years agoMerge "Use remote_api for shell access on developer.android.com." into froyo
Trevor Johns [Fri, 10 Sep 2010 19:23:09 +0000 (12:23 -0700)]
Merge "Use remote_api for shell access on developer.android.com." into froyo

13 years agoUse remote_api for shell access on developer.android.com.
Trevor Johns [Fri, 10 Sep 2010 18:26:50 +0000 (11:26 -0700)]
Use remote_api for shell access on developer.android.com.

This allows Python shell access on developer.android.com
using the remote_api_shell.py script that's bundled with
the App Engine SDK.

Change-Id: If3c979ccbf885905a9cc3840645dcb6a5a50cfa8

13 years agoMerge "Add samples for secure views." into gingerbread
Jeff Brown [Wed, 8 Sep 2010 18:53:13 +0000 (11:53 -0700)]
Merge "Add samples for secure views." into gingerbread

13 years agoUpdate to follow ALooper ident change.
Dianne Hackborn [Tue, 7 Sep 2010 22:30:07 +0000 (15:30 -0700)]
Update to follow ALooper ident change.

Also the native-activity sample also has some very simple code showing
how to listen to the accelerometer.

Change-Id: I0629b8bc40cddd66233c1675cd5e8b42a9b722d8

13 years agoAdd samples for secure views.
Jeff Brown [Fri, 3 Sep 2010 17:19:28 +0000 (10:19 -0700)]
Add samples for secure views.

Change-Id: Ibe1e63c87f4c6a715009f7bbcdafa552dc2d937c

13 years agoAdd an activity to Dev Tools that shows the Configuration and DisplayMetrics.
Joe Onorato [Tue, 7 Sep 2010 15:53:18 +0000 (11:53 -0400)]
Add an activity to Dev Tools that shows the Configuration and DisplayMetrics.

Change-Id: I6d3a682adccfef99eaa4d01b97091eda68f05cd8

13 years agoAdd API demo for picking a contact with a permission grant.
Dianne Hackborn [Thu, 2 Sep 2010 05:58:26 +0000 (22:58 -0700)]
Add API demo for picking a contact with a permission grant.

Change-Id: I9b0659e18afb19f8050cb77104c41ea291a9e3c7

13 years agoMerge "New SDK architecture. DO NOT MERGE." into gingerbread
Xavier Ducrohet [Wed, 1 Sep 2010 23:48:59 +0000 (16:48 -0700)]
Merge "New SDK architecture. DO NOT MERGE." into gingerbread

13 years agoNew SDK architecture. DO NOT MERGE.
Xavier Ducrohet [Sat, 28 Aug 2010 01:47:51 +0000 (18:47 -0700)]
New SDK architecture. DO NOT MERGE.

tools normally under the platform, move to a single location
called platform-tools/

Change-Id: I70659167778303722acb107a2d04bbf01467f884

13 years agoMerge "Add the simple script log for the statbility stress test. Add the randomize...
Yu Shan Emily Lau [Mon, 30 Aug 2010 22:52:59 +0000 (15:52 -0700)]
Merge "Add the simple script log for the statbility stress test. Add the randomize script option." into gingerbread

13 years agoAdd the simple script log for the statbility stress test.
Yu Shan Emily Lau [Fri, 27 Aug 2010 06:00:06 +0000 (23:00 -0700)]
Add the simple script log for the statbility stress test.
Add the randomize script option.

Change-Id: I7fbbd3b78a2fc5fe5300ac4811540d0cd2070688

13 years agoFix build.
Dianne Hackborn [Sat, 28 Aug 2010 00:00:52 +0000 (17:00 -0700)]
Fix build.

Change-Id: Ic030f82e79981792dc3116d318e217ab81ecea3b

13 years agoExplicitly enable backup by default in SDK builds
Christopher Tate [Tue, 24 Aug 2010 20:24:48 +0000 (13:24 -0700)]
Explicitly enable backup by default in SDK builds

This change parallels a frameworks/base change that makes the default
backup state at boot "enabled, with LocalTransport as the currently
active transport."  Device vendors who wish to ship the Google backup
transport need to explicitly disable backup by default (it is enabled
when the user agrees to the opt-in disclosure).

Change-Id: I6b0c5c059ef58effd5c121107ea3a5edd9e936cc

13 years agoMerge "Disable Proguard for the SampleBrowerPlugin" into gingerbread
Derek Sollenberger [Fri, 27 Aug 2010 14:43:54 +0000 (07:43 -0700)]
Merge "Disable Proguard for the SampleBrowerPlugin" into gingerbread

13 years agoDisable Proguard for the SampleBrowerPlugin
Derek Sollenberger [Fri, 27 Aug 2010 14:34:18 +0000 (10:34 -0400)]
Disable Proguard for the SampleBrowerPlugin

The native plugin library makes calls into java files that are
not often stripped out when Proguard optimizes the package.

Change-Id: I6ce8867dc9fa23e8a6adcc8daf9c8fb75f83c16d

13 years agoMerge "Add the new option for the device sleep time. This is only for the scripted...
Yu Shan Emily Lau [Thu, 26 Aug 2010 22:17:36 +0000 (15:17 -0700)]
Merge "Add the new option for the device sleep time. This is only for the scripted monkey." into gingerbread

13 years agoUpdate to follow API.
Dianne Hackborn [Thu, 26 Aug 2010 21:38:20 +0000 (14:38 -0700)]
Update to follow API.

Change-Id: I9d6a1dc64cd4e55bf68994784c4a724aeafd7857

13 years agoAdd the new option for the device sleep time. This is only for the scripted monkey.
Yu Shan Emily Lau [Thu, 26 Aug 2010 02:37:13 +0000 (19:37 -0700)]
Add the new option for the device sleep time. This is only for the scripted monkey.

Change-Id: I4a6bd7133bbd2da9594a47e1f5529c5358cd9aed

13 years agoam bea98acf: reconcile open-source froyo into google variant
Jean-Baptiste Queru [Wed, 25 Aug 2010 17:13:14 +0000 (10:13 -0700)]
am bea98acf: reconcile open-source froyo into google variant

Merge commit 'bea98acfa2253796aeade605c7020a7cc942af41' into gingerbread

* commit 'bea98acfa2253796aeade605c7020a7cc942af41':
  Explicitly enable backup by default in SDK builds

13 years agoQuiet harmless StrictMode violations caused by the Monkey.
Brad Fitzpatrick [Wed, 25 Aug 2010 01:58:14 +0000 (18:58 -0700)]
Quiet harmless StrictMode violations caused by the Monkey.

The monkey writes to System.out which is effectively a file and is
caught by StrictMode.

BUG=2947447

Change-Id: Iab38917f18baa319dad34d0c788bc9a10a041796

13 years agoreconcile open-source froyo into google variant
Jean-Baptiste Queru [Wed, 25 Aug 2010 16:37:05 +0000 (09:37 -0700)]
reconcile open-source froyo into google variant

Change-Id: I2dcb50be9b2061fb90a10d40e430294233cc5039

13 years agoExplicitly enable backup by default in SDK builds
Christopher Tate [Tue, 24 Aug 2010 20:24:48 +0000 (13:24 -0700)]
Explicitly enable backup by default in SDK builds

This change parallels a frameworks/base change that makes the default
backup state at boot "enabled, with LocalTransport as the currently
active transport."  Device vendors who wish to ship the Google backup
transport need to explicitly disable backup by default (it is enabled
when the user agrees to the opt-in disclosure).

Change-Id: I6b0c5c059ef58effd5c121107ea3a5edd9e936cc

13 years agoMerge "Add the new option for the scripted monkey profile testing." into gingerbread
Yu Shan Emily Lau [Wed, 25 Aug 2010 03:08:29 +0000 (20:08 -0700)]
Merge "Add the new option for the scripted monkey profile testing." into gingerbread

13 years agoMerge "Added a couple of new properties." into gingerbread
Brian Carlstrom [Wed, 25 Aug 2010 02:58:19 +0000 (19:58 -0700)]
Merge "Added a couple of new properties." into gingerbread

13 years agoAdd the new option for the scripted monkey profile testing.
Yu Shan Emily Lau [Wed, 25 Aug 2010 01:03:32 +0000 (18:03 -0700)]
Add the new option for the scripted monkey profile testing.

Change-Id: I1013a1a0daed948f509d9a29077f0e282baf1a10

13 years agoam ddc026b1: Merge "Explicitly enable backup by default in SDK builds" into froyo
Christopher Tate [Wed, 25 Aug 2010 01:19:19 +0000 (18:19 -0700)]
am ddc026b1: Merge "Explicitly enable backup by default in SDK builds" into froyo

Merge commit 'ddc026b1d5633348d97d78477ff1c7c950c3f3a8' into gingerbread

* commit 'ddc026b1d5633348d97d78477ff1c7c950c3f3a8':
  Explicitly enable backup by default in SDK builds

13 years agoMerge "Explicitly enable backup by default in SDK builds" into froyo
Christopher Tate [Wed, 25 Aug 2010 01:04:35 +0000 (18:04 -0700)]
Merge "Explicitly enable backup by default in SDK builds" into froyo

13 years agoAdded a couple of new properties.
Brian Carlstrom [Wed, 25 Aug 2010 01:02:43 +0000 (18:02 -0700)]
Added a couple of new properties.

The Android framework crashes with an int parsing failure and then
spins wildly if it can't find an expected property.

(git cherry-pick -e d88ee455)

Change-Id: Ie33e0261185301e6ce41b0896f9916816db9f928

13 years agoExplicitly enable backup by default in SDK builds
Christopher Tate [Tue, 24 Aug 2010 20:24:48 +0000 (13:24 -0700)]
Explicitly enable backup by default in SDK builds

This change parallels a frameworks/base change that makes the default
backup state at boot "enabled, with LocalTransport as the currently
active transport."  Device vendors who wish to ship the Google backup
transport need to explicitly disable backup by default (it is enabled
when the user agrees to the opt-in disclosure).

Change-Id: I6b0c5c059ef58effd5c121107ea3a5edd9e936cc

13 years agoMerge "Added the new keyword tap for the scripted monkey." into gingerbread
Yu Shan Emily Lau [Thu, 19 Aug 2010 22:46:51 +0000 (15:46 -0700)]
Merge "Added the new keyword tap for the scripted monkey." into gingerbread

13 years agoAdded the new keyword tap for the scripted monkey.
Yu Shan Emily Lau [Thu, 19 Aug 2010 21:57:42 +0000 (14:57 -0700)]
Added the new keyword tap for the scripted monkey.

Change-Id: Iabfc462f8fc853b3235aa0d742fa46c97e980b77

13 years agoMerge "Add the monkey event which allows the scripted monkey to execute the shell...
Yu Shan Emily Lau [Thu, 19 Aug 2010 18:11:28 +0000 (11:11 -0700)]
Merge "Add the monkey event which allows the scripted monkey to execute the shell command." into gingerbread

13 years agoAdd the monkey event which allows the scripted monkey to execute the shell command.
Yu Shan Emily Lau [Wed, 18 Aug 2010 03:00:07 +0000 (20:00 -0700)]
Add the monkey event which allows the scripted monkey to execute the shell command.

Change-Id: Id5548fc42fc5c7bee6879fffc580e134a75572ab

13 years agodon't strip resources so it work on all devices
Mathias Agopian [Tue, 17 Aug 2010 22:32:32 +0000 (15:32 -0700)]
don't strip resources so it work on all devices

Change-Id: Ifc6be52151fcdecd0f8f622c7312ffa0ac4705e9

13 years agoam 9f93186b: Adding a sample accessibility service
Svetoslav Ganov [Tue, 17 Aug 2010 17:45:23 +0000 (10:45 -0700)]
am 9f93186b: Adding a sample accessibility service

Merge commit '9f93186beae13ea057a4b2e867928b357cd650a4' into gingerbread

* commit '9f93186beae13ea057a4b2e867928b357cd650a4':
  Adding a sample accessibility service

13 years agoReformat to Android style guidelines
Mathias Agopian [Mon, 16 Aug 2010 23:13:24 +0000 (16:13 -0700)]
Reformat to Android style guidelines

Change-Id: Ib9d7e39464a246dbaae38e00fbb325f153f89f65

13 years agoTake screen rotation into account
Mathias Agopian [Mon, 16 Aug 2010 19:55:18 +0000 (12:55 -0700)]
Take screen rotation into account

Change-Id: I354c58eb1d28552d46b8fa269e12c00eaf6cbb99

13 years agoFix keycode. [Cherry-pick from master]
Ying Wang [Thu, 12 Aug 2010 18:30:41 +0000 (11:30 -0700)]
Fix keycode. [Cherry-pick from master]

see frameworks/base/core/java/android/view/KeyEvent.java.

Change-Id: Ic9a355b36815c4ac7db9c57c14bfe933585cf963
http://b/issue?id=2830562

13 years agoAdding a sample accessibility service
Svetoslav Ganov [Wed, 11 Aug 2010 04:41:06 +0000 (21:41 -0700)]
Adding a sample accessibility service

Change-Id: I5bd42157e263aac6d7a85db090319db168dea2fd

13 years agoSome native activity sample code cleanup.
Dianne Hackborn [Wed, 4 Aug 2010 18:13:03 +0000 (11:13 -0700)]
Some native activity sample code cleanup.

Update to include newest headers and library, tweak glue code to
work better with state saving and add support for config changes.

Change-Id: I4d27bd4a0f542f217efaec86cf4f219aca020426

13 years agoSeparate platform files and samples by API level.
David 'Digit' Turner [Fri, 30 Jul 2010 01:07:56 +0000 (18:07 -0700)]
Separate platform files and samples by API level.

Remove all duplicate platform files, i.e development/ndk/platforms/android-N now
only contains files that are introduced in API level 'N' and not found in level 'N-1'

(This makes it easier to manage independent platform release branches, and makes
 platform additions trivial to examine and maintain).

Move samples that depends on features of API level 'N' into platforms/android-N/samples

+ update tests/run-all.sh accordingly

Change-Id: I04c4c67c6c674c1714d5812d461d0524a4f4cfd9

13 years agoUpdate time zone data to the new version 2010k.
Eric Fischer [Mon, 26 Jul 2010 22:54:28 +0000 (15:54 -0700)]
Update time zone data to the new version 2010k.

Change-Id: Ifaadb0c75343bf271232dcd72f53fd34bb33aca1

14 years agoUpdate source.properties for SDK platform component.
Xavier Ducrohet [Wed, 21 Jul 2010 23:30:05 +0000 (16:30 -0700)]
Update source.properties for SDK platform component.

Change-Id: I4226a31d33fffbeb326ef2aea792a0676139fb1a

14 years agoMerge "documentation fix when downloading repo" into gingerbread
Nick Kralevich [Tue, 20 Jul 2010 00:00:42 +0000 (17:00 -0700)]
Merge "documentation fix when downloading repo" into gingerbread

14 years agondk: fix samples compilation
David 'Digit' Turner [Fri, 16 Jul 2010 21:52:50 +0000 (14:52 -0700)]
ndk: fix samples compilation

Change-Id: I3e0f88f823c891cea5ca3f82f7c3a6284295425c