summaryrefslogtreecommitdiffstats
path: root/common/Android.mk
Commit message (Collapse)AuthorAgeFilesLines
* API CHANGE: Add SSLSessionCache public API to allow unbundled SSL session ↵Dan Egnor2010-02-101-0/+1
| | | | | | | | | | | caching. Generally clean up the associated SSLCertificateSocketFactory API as well, change AndroidHttpClient to use this new thing, and make the android-common library build SDK-clean (woo hoo). Bug: 2362543 Bug: 2357311
* Add OperationScheduler (and test) to the common static library;Dan Egnor2009-11-211-0/+3
| | | | includes new string parsing function (and test).
* Solve the mutual interdependency problem between common and framework:Dan Egnor2009-11-181-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-181-0/+23
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.