summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Expand install observer semanticsChristopher Tate2014-03-271-2/+6
| | | | | | | | | | | | | | ...and now fail conservatively when two apps both attempt to define the same permission. Apps signed with the same certificate are permitted to redefine permissions. We also finally have a (hidden) interface class for observing package installation so that we can now rev the interface without breaking existing callers. Bug 13551375 Change-Id: Ifa4e59154dcccbb286ee46a35a6f25e4ad0f0f01
* Merge "add Dynamic Drawable (vector graphics for Icons)"John Hoford2014-03-2741-0/+2290
|\
| * add Dynamic Drawable (vector graphics for Icons)John Hoford2014-03-2641-0/+2290
| | | | | | | | Change-Id: Id44b7f6d1b8dd073b8ed35e2142a380550f2449b
* | Use new build var to depend on an APKs resourcesAdam Lesinski2014-03-251-1/+1
| | | | | | | | | | | | | | Some other projects use LOCAL_APK_LIBRARIES and don't yet work with the new shared library changes. Change-Id: Ibb54bc1b5e3eb1252cf5b4e45249b089d25854ac
* | Shared library resource supportAdam Lesinski2014-03-2513-6/+182
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | Shared libraries can now export resources for applications to use. Exporting resources works the same way the framework exports resources, by defining the public symbols in res/values/public.xml. Building a shared library requires aapt to be invoked with the --shared-lib option. Shared libraries will be assigned a package ID of 0x00 at build-time. At runtime, all loaded shared libraries will be assigned a new package ID. Currently, shared libraries should not import other shared libraries, as those dependencies will not be loaded at runtime. At runtime, reflection is used to update the package ID of resource symbols in the shared library's R class file. The package name of the R class file is assumed to be the same as the shared library's package name declared in its manifest. This will be customizable in a future commit. See /tests/SharedLibrary/ for examples of a shared library and its client. Bug:12724178 Change-Id: I60c0cb8ab87849f8f8a1a13431562fe8603020a7
* Fix broken tests to fix buildJohn Spurlock2014-03-191-2/+5
| | | | Change-Id: I6bb9d178a9f1b09c1b247ec9cbdd57507295c4bf
* Rename DisplayList->RenderNodeJohn Reck2014-03-172-4/+4
| | | | Change-Id: Idcca6f26ba6282594789962f5edb3ed53a290fef
* Adds a TransportController and TransportPerformer to sessionRoboErik2014-03-126-50/+286
| | | | | | | | | This makes transport controls a primitive interface on sessions with a way to create the performer, register callbacks, and send commands and updates between controllers and performers. This still needs some cleanup but has been tested with OneMedia. Change-Id: I373d35f7ccc383b8421bd14044457467d80425f3
* Fix build, removing hidden attrChris Craik2014-03-071-2/+0
| | | | Change-Id: Ia820e76345ad6077025e887afdaa91e08eecd649
* Improve isolatedZVolume testChris Craik2014-03-032-7/+13
| | | | | | Shows interleaving effect better Change-Id: I85361b15587306484dc8fa6d6366e866014c270f
* Merge "Move Session apis to android.media.session"RoboErik2014-02-265-11/+11
|\
| * Move Session apis to android.media.sessionRoboErik2014-02-255-11/+11
| | | | | | | | | | | | | | This is to make it easier to distinguish the new apis from the old ones. Change-Id: Ic5eaf65e8bd054a844f87b9118c4bb18f30ac8a7
* | Tabs -> spaces in frameworks/base.John Spurlock2014-02-2512-70/+70
|/ | | | Change-Id: I5a84e8e93ac99b5ed0212b37bf66efa5e53864be
* resolved conflicts for merge of baaa080b to masterJeff Brown2014-02-207-0/+280
|\ | | | | | | Change-Id: I3ee12321e298f7a2ea577a99f30c49f3bb497fae
| * am 07e6d1b9: Merge "Add a new "doze mode" based on Dream components." into ↵Jeff Brown2014-02-207-0/+280
| |\ | | | | | | | | | | | | | | | | | | klp-modular-dev * commit '07e6d1b9a5f81ff5a5bf91f2b260ee487d5f2b65': Add a new "doze mode" based on Dream components.
| | * Add a new "doze mode" based on Dream components.Jeff Brown2014-02-207-0/+280
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a doze component has been specified in a config.xml resource overlay, the power manager will try to start a preconfigured dream whenever it would have otherwise gone to sleep and turned the screen off. The dream should render whatever it intends to show then call startDozing() to tell the power manager to put the display into a low power "doze" state and allow the application processor to be suspended. The dream may wake up periodically using the alarm manager or other features to update the contents of the display. Added several new config.xml resources related to dreams and dozing. In particular for dozing there are two new resources that pertain to decoupling auto-suspend mode and interactive mode from the display state. This is a requirement to enable the application processor and other components to be suspended while dozing. Most devices do not support these features today. Consolidated the power manager's NAPPING and DREAMING states into one to simplify the logic. The NAPPING state was mostly superfluous and simply indicated that the power manager should attempt to start a new dream. This state is now tracked in the mSandmanSummoned field. Added a new DOZING state which is analoguous to DREAMING. The normal state transition is now: AWAKE -> DREAMING -> DOZING -> ASLEEP. The PowerManager.goToSleep() method now enters the DOZING state instead of immediately going to sleep. While in the doze state, the screen remains on. However, we actually tell the rest of the system that the screen is off. This is somewhat unfortunate but much of the system makes inappropriate assumptions about what it means for the screen to be on or off. In particular, screen on is usually taken to indicate an interactive state where the user is present but that's not at all true for dozing (and is only sometimes true while dreaming). We will probably need to add some more precise externally visible states at some point. The DozeHardware interface encapsulates a generic microcontroller interface to allow a doze dream for off-loading rendering or other functions while dozing. If the device possesses an MCU HAL for dozing then it is exposed to the DreamService here. Removed a number of catch blocks in DreamService that caught Throwable and attempted to cause the dream to finish itself. We actually just want to let the process crash. Cleanup will happen automatically if needed. Catching these exceptions results in mysterious undefined behavior and broken dreams. Bug: 12494706 Change-Id: Ie78336b37dde7250d1ce65b3d367879e3bfb2b8b
| | * am dcbde1b0: Merge "libcore_to_document and junit_to_document are no longer ↵Ying Wang2013-12-051-2/+2
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | functions." * commit 'dcbde1b02ad69c18509afd87974c72c3a22f45dd': libcore_to_document and junit_to_document are no longer functions.
* | | \ Merge "use min app launch time in AppLaunch perf test"Guang Zhu2014-02-201-9/+12
|\ \ \ \
| * | | | use min app launch time in AppLaunch perf testGuang Zhu2014-02-191-9/+12
| | | | | | | | | | | | | | | | | | | | Change-Id: Id3a5872ff29fba5daeff058f0842fd011e50a0a1
* | | | | Initial commit for MediaSession test appRoboErik2014-02-1927-0/+1893
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | This app creates a service and UI in separate processes and uses the new MediaSession APIs. This is still a rough work in progress. Change-Id: I9692c95bf2fdbee7255da86dff59044c893e3a1f
* | | | Refactor HardwareLayerJohn Reck2014-02-102-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Defer all the things! Groundwork to allow hardware layers to work in a renderthread world Change-Id: Ib3aa47525f393083621254a743dbaa6352f933bd
* | | | am cd4cf932: am 6691bfd6: am cccae25f: Merge "Example controller app for ↵John Spurlock2014-02-104-0/+411
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | system ui demo mode." * commit 'cd4cf932d994c392ca6da21dc32a26d6d467b721': Example controller app for system ui demo mode.
| * | | Example controller app for system ui demo mode.John Spurlock2014-02-074-0/+411
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Demo mode is protected behind a system setting. To enable: $ adb shell settings put global sysui_demo_allowed 1 Change-Id: I2248e27a253bf9eac176e8be9153a2b147cefa40
| * | | Merge commit 'bac61807d3bcfff957b358cb9ad77850bd373689' into HEADThe Android Open Source Project2013-12-058-1/+421
| |\ \ \ | | |/ / | | | / | | |/ | |/| Change-Id: I29374270c8e0c2f2859efaf1d55af9f73da0f8d7
| * | libcore_to_document and junit_to_document are no longer functions.Ying Wang2013-12-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | They are evaluated only once in the corresponding export .mk file. This fixes build log spam reported in: https://code.google.com/p/android/issues/detail?id=63184 Change-Id: I549eb052272bbdebef8fca697822f5eaa0fe5764
* | | Rework and clean up DisplayList projectionChris Craik2014-02-062-29/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move the projection surface to be a property of a DisplayList, set to true for every background drawable. Additionally, handle a projecting view background such that it doesn't try to project onto itself (which is undesirable). Change-Id: Ic70b17474bd87340e80767f8518f73b233419c7a
* | | Introduce "IdleService" API to expose idle-time maintenance to appsChristopher Tate2014-01-316-0/+246
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When an application wishes to do low-priority background work when the device is otherwise idle (e.g. in a desk dock overnight), it declares a service in its manifest that requires this permission: android:permission="android.permission.BIND_IDLE_SERVICE to launch, and which publishes this intent filter: <intent-filter> <action android:name="android.service.idle.IdleService" /> </intent-filter> This string is declared in the API as IdleService.SERVICE_INTERFACE. The service must be implemented by extending the new "IdleService" class, which provides the API through which the system will communicate with the app. IdleService declares three methods, two of which are lifecycle callbacks to the service, and the third of which is for the service itself to invoke when appropriate. The lifecycle callbacks are public abstract boolean onIdleStart(); public abstract void onIdleStop(); The first of these is a notification to the service that an idle maintenance interval has begun. The service can then spin off whatever non-UI work it wishes. When the interval is over, or if the OS determines that idle services should be shut down immediately, the onIdleStop() method will be invoked. The service must shut down any background processing immediately when this method is called. Both of these methods must return immediately. However, the OS holds a wakelock on the application's behalf for the entire period between the onIdleStart() and onIdleStop() callbacks. This means that for system-arbitrated idle-time operation, the application does not need to do any of its own wakelock management, and does not need to hold any wakelock permissions. The third method in IdleService is public final void finishIdle(); Calling this method notifies the OS that the application has finished whatever idle-time operation it needed to perform, and the OS is thus free to release the wakelock and return to normal operation (or to allow other apps to run their own idle services). Currently the idle window granted to each idle service is ten minutes. The OS is rather conservative about when these services are run; low battery or any user activity will suppress them, and the OS will not choose to run them particularly often. Idle services are granted their execution windows in round-robin fashion. Bug 9680213 Change-Id: Idd6f35940c938c31b94aa4269a67870abf7125b6
* | | Merge "Update reordering method names, and make 3d reordering API public"Chris Craik2014-01-295-1/+108
|\ \ \
| * | | Update reordering method names, and make 3d reordering API publicChris Craik2014-01-295-1/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | IsContainedVolume -> hasIsolatedZVolume conveys that this affects Z ordering of views ProjectToContainedBackground -> ProjectBackwards, since it ended up using its own projection target, separate from the 3d volume bit Change-Id: Ia2cde838cc4da134366fe6ff623290fbd65e50c3
* | | | Merge "Adapt to underlying changes in the PBKDF2 implementation"Christopher Tate2014-01-293-0/+18
|\ \ \ \ | |/ / / |/| | |
| * | | Adapt to underlying changes in the PBKDF2 implementationChristopher Tate2014-01-163-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to specify "PBKDF2WithHmacSHA1And8bit" now in order to get precisely the same output as was previously generated with "PBKDF2WithHmacSHA1". We also now try both when it's ambiguous which was used to generate the archive checksums. Bug 12494407 Change-Id: I5443f31a5e13c24f44445768b6e9a6eea221ede6
* | | | Merge "Add "throws IOException" to MediaCodec factory methods"Andy Hung2014-01-215-8/+42
|\ \ \ \
| * | | | Add "throws IOException" to MediaCodec factory methodsAndy Hung2014-01-165-8/+42
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | android.media.MediaCodec (createByCodecName|createDecoderByType|createEncoderByType) now explicitly throws IOException. Requires changes to existing code for declaration compatibility. Bug: 11364276 Change-Id: I105ecb7c4bd49bf803111253cd23bab161c988f9 Signed-off-by: Andy Hung <hunga@google.com>
* | | | Support projection of DisplayLists onto ancestors.Chris Craik2014-01-153-0/+155
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For now, ancestor views signal the acceptance of projections with a save(0x20)/restore pair. During the order traversal, each view with the save(0x20) code will collect descendent views with mProjectToContainedVolume (which still needs to be renamed) so that they can be drawn out of order later. - *Temporary* sample code added to HwAccelerationTest. - Note that a projected displaylist must not be clipped. Change-Id: I45c493e845961535b958d59c53e8aff3f8891d9f
* | | Don't attempt to launch disabled activities in smoke test.Brett Chabot2014-01-022-10/+12
| | | | | | | | | | | | | | | | | | | | | Also remove the superfluous runner from manifest. Bug: 12245071 Change-Id: I724b87dd49b04eb3291be88f6d7ab035d67c3971
* | | RenderThread workJohn Reck2013-12-0913-0/+347
| | | | | | | | | | | | | | | | | | Hacky prototype needs a private API to enable Change-Id: I21e0ddf3cdbd38a4036354b5d6012449e1a34849
* | | libcore_to_document and junit_to_document are no longer functions.Ying Wang2013-12-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | They are evaluated only once in the corresponding export .mk file. This fixes build log spam reported in: https://code.google.com/p/android/issues/detail?id=63184 Change-Id: I549eb052272bbdebef8fca697822f5eaa0fe5764
* | | am e5ae0bfd: am a20f625c: am 41b92b00: Merge "Finalize assets for screen ↵Jeff Brown2013-11-132-0/+2
|\ \ \ | | |/ | |/| | | | | | | | | | | | | casting." into klp-dev * commit 'e5ae0bfdf7933d7ea8bec94f0c7e25347c423710': Finalize assets for screen casting.
| * | Finalize assets for screen casting.Jeff Brown2013-11-132-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Extend wifi display connection timeout. Show a notification while connecting to wifi display. Ensure that remote display providers are really trusted before connecting to them. Bug: 11257292 Change-Id: Iad0caaa30d7946df818bc75ade071f2e377f8a53
* | | Merge commit 'bf581034' into manualmergeCraig Mautner2013-11-121-1/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | Conflicts: tools/layoutlib/bridge/src/android/view/IWindowManagerImpl.java Change-Id: I9fd35ea9166ec73ce1f9f6154aa4ec87e79e20cb
| * | Relayout windows that handle their own config change.Craig Mautner2013-11-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a window claims to handle its own configuration change then we won't destroy and recreate its window on a configuration change. Normally that recreation triggers the first layout following orientation change because mHaveFrame is false. Windows that handle their own configuration changes never got a relayout pass following a change in orientation. This change passes the configuration changes that an application handles into the AppWindowToken. If the app says it handles orientation or screen size changes then a relayout will occur when the configuration has changed. Fixes bug 11647107. Change-Id: Ie8d49fd050442ebbdcf0b805087894e3a2fc4be9
* | | am 9ffc4a65: am 854395ad: am c481a634: Merge "UI tweaks." into klp-devJeff Brown2013-11-111-4/+85
|\ \ \ | |/ / | | | | | | | | | * commit '9ffc4a65e51ae8695be0531c6fae0d33301ded60': UI tweaks.
| * | UI tweaks.Jeff Brown2013-11-111-4/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hide disabled routes from the chooser. Fix layout of chooser dialog when the settings button is visible and the list is very long to prevent truncation of the settings button. Fix an issue when we fake the route connecting status when a route is selected. The route changed notification needs to be propagated to apps. Fake it better. Immediately disconnect from a route when the connection is lost or a connection attempt fails. Added a few new test displays for this case. Bug: 11257292 Change-Id: I360ab5dc937ad60d97592eab54b19f034519645e
* | | am c2b652fd: am 5182ea4b: am d40a4d74: Merge "Add media router service and ↵Jeff Brown2013-11-077-0/+337
|\ \ \ | |/ / | | | | | | | | | | | | | | | integrate with remote displays." into klp-dev * commit 'c2b652fd4d386b79dc99af249b6ad3844e53fdf1': Add media router service and integrate with remote displays.
| * | Add media router service and integrate with remote displays.Jeff Brown2013-11-077-0/+337
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds a new media router service whose purpose is to track global state information associated with media routes. This service publishes routes to the media router instance in application processes and handles requested state changes such as selecting or unselecting global routes. The service also binds to remote display provider services which can offer new remote display routes to the system. Includes a test application for manually verifying certain aspects of the operation of the media router service. The remote display provider interface is essentially a stripped down media route provider interface as defined in the support library media router implementation. For now, it is designed to be used only by first parties to publish remote display routes to the system so it is not exposed as public API in the SDK. In the future, the remote display provider interface will most likely be deprecated and replaced with a more featureful media route provider interface for third party integration, similar to what is in the support library today. Further patch sets integrate these new capabilities into the System UI and Settings for connecting remote displays. Bug: 11257292 Change-Id: I31109f23f17b474d17534d0f5f4503e388b081c2
* | Revert "Add "throws IOException" to MediaCodec constructors (3)"Andy Hung2013-11-075-42/+8
| | | | | | | | | | | | This reverts commit 52d8aa79a31c5042d2b43d06f08fa28489b27d1b. Change-Id: Ic706e0fb469931664499d00fa3a221726b258673
* | Add "throws IOException" to MediaCodec constructors (3)Andy Hung2013-11-055-8/+42
| | | | | | | | | | | | | | | | | | | | | | | | Change to add "throws IOException" to android.media.MediaCodec (createByCodecName|createDecoderByType|createEncoderByType). The exception was previously thrown through the native JNI, but not explicitly declared. Requires changes to existing code for declaration compatibility. Bug: 11364276 Change-Id: Ia0d3481397285cb1503bedde37d4651934b3a481 Signed-off-by: Andy Hung <hunga@google.com>
* | am 09de7975: am a451b603: am 577d0dac: Merge changes ↵Igor Murashkin2013-10-15148-0/+20302
|\ \ | |/ | | | | | | | | | | | | | | I536021b9,I6eb541c9,I6ac08eca into klp-dev * commit '09de7975fead1b47ea78f6f812a2f649e5dfb31d': SmartCamera: Fix to build against latest camera2 api Camera2Tests: update SmartCamera for async api Camera2Tests: Add SmartCamera App
| * SmartCamera: Fix to build against latest camera2 apiIgor Murashkin2013-10-153-7/+9
| | | | | | | | | | Bug: 10818732 Change-Id: I536021b9663331532e2f4c21a4fc0f3de5da9aa9
| * Camera2Tests: update SmartCamera for async apiIgor Murashkin2013-10-152-10/+20
| | | | | | | | Change-Id: I6eb541c96ee50756c35e7785fdae63e8e45e2726