summaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
* Add OperationScheduler (and test) to the common static library;Dan Egnor2009-11-214-14/+430
| | | | includes new string parsing function (and test).
* Solve the mutual interdependency problem between common and framework:Dan Egnor2009-11-182-3/+4
| | | | | | | | Have framework include the common source files directly when building, then build common as a static library separately (depending on framework, like everything else). Goes with a companion change to build/core/pathmap.mk.
* Attempt to fix the build server build: make the common libraryDan Egnor2009-11-181-0/+2
| | | | not depend on the framework library (for now, at least).
* Create android-common static library which gets included in frameworks.jar,Dan Egnor2009-11-185-0/+411
but can also be used by unbundled apps. Move android.text.util.Regex there as a starting example, renamed to a more sensible (?) com.android.common.Patterns. Set up a corresponding test package, and move RegexTest (to PatternsTest). Update clients.