summaryrefslogtreecommitdiffstats
path: root/packages/DefaultContainerService/Android.mk
Commit message (Collapse)AuthorAgeFilesLines
* Correct executable bit for source filesKenny Root2012-11-071-0/+0
| | | | | | | | | Many media files and source code files were marked as executable in Git. Remove those. Also a shell script and python script were not marked as executable. Change-Id: Ieb51bafb46c895a21d2e83696f5a901ba752b2c5
* DefaultContainerService's JNI library is requiredKenny Root2010-12-071-1/+1
| | | | | | | | Change from LOCAL_JNI_SHARED_LIBRARIES to LOCAL_REQUIRED_MODULES to make sure the JNI library is built and included when DefaultContainerService is built. Change-Id: I322c72415237c2b70bff345d50e2a9e4f2e6d988
* Add measurement API to DefaultContainerServiceKenny Root2010-12-041-0/+4
| | | | | | | | | | System applications that don't have "media_rw" access need some way to measure the size of directories on the SD card and other internal media. Add this API to DefaultContainerService so they can simply bind to the service and make an RPC. Bug: 3203974 Change-Id: I4e1bcd7a1b702b156c011ecc04f6915022cb258a
* AppsOnSd feature - Add default containerSuchi Amalapurapu2010-01-271-0/+12
Add new remote interface to do temporary copies. The new remote stub handling is done on mHandler thread and doesn't need locking for now. Add new InstallArgs class and subclasses to isolate cases for installation. Move resource deletion for failed installs/upgrades to later on in installation cycle. Fix code path for forward locked apps when using scanPackageLI TODO's Fix installation paths to completely use InstallArgs based design later on. Get rid of using flags in various install/uninstall code paths. Ideally InstallArgs should be created using these flags and used in the rest of the code. Function renames. Revisit mount api's.