summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Catch when a file resource (non values) added in an overlay.Robert Greenwalt2009-06-081-14/+17
| | | | | | | File resources are assigned resource id's and if an overlay adds one it renumbers things and breaks compatability. Used to segfault if you tried before, but now catches it and lets you know what file caused the problem.
* Add per-named-item overlay ability in res xml.Robert Greenwalt2009-06-052-5/+17
| | | | | | | | | | | | | | Fixes 1899451. Also errors out if you add a bag via an overlay (which would renumber resources). Note that you can still add elements within the bag as they are not issued resource IDs. So for example you can now modify the framework themes.xml file without copying the entire file. All bag types are now modifable except non-named bag types (how would you address which element to replace?): array string_array integer_array
* Fix external bug 2875: Matrix#mValues[7] assigned twice in place of mValues[8]Xavier Ducrohet2009-06-051-66/+66
|
* localize: remove dependency on mkdirs/etc in libhostBrian Swetland2009-06-042-2/+35
| | | | | | This will let us break the libhost dependency on libutils. Signed-off-by: Brian Swetland <swetland@google.com>
* * Moved supports-density tag under manifestMitsuru Oshima2009-06-031-8/+0
| | | | | | | | | | | * Refactored Compatibility code * Added CompatibilityInfo class * Removed getApplicationScale from Context * Added Resources#getCompatibilityInfo so that RootView can get the compatibility info w/o going through Context * Expandable support * Added expandable tag under manifest * Old application w/o expandable is given the default screen size ([320, 480] x density). * The non-expandable window is centered.
* Add padding to public.xml to avoid breaking from auto-merges.Dianne Hackborn2009-05-201-5/+116
|
* Update aapt badging for native code, configs, density, etc.Dianne Hackborn2009-05-181-23/+107
|
* Argh fix another build breakage!Dianne Hackborn2009-05-151-0/+2
|
* Implement compatibility support for WRITE_SDCARD permission.Dianne Hackborn2009-05-157-6/+235
| | | | | | | | | | | Now old applications will automatically be granted it. Also renamed it from SDCARD_WRITE to WRITE_SDCARD to be consistent with our other permissions, and re-arranged how we do targetSdkVersion to actually be usuable for this kind of stuff. Note that right now this results in basically all apps being given the WRITE_SDCARD permission, because their targetSdkVersion is not set. I will be dealing with that in a future change.
* Fix 1840639 to support overlays with zz_ZZ.Robert Greenwalt2009-05-081-1/+1
| | | | Everything but strings worked fine before but a new default string would generate a build error.
* Rewrite SyncStorageEngine to use flat files and in-memory data structures.Dianne Hackborn2009-05-051-16/+0
| | | | | | | | | | | | | | | | | | | | | | The previous implementation used a database for storing all of its state, which could cause a significant amount of IO activity as its tables were updated through the stages of a sync. This new implementation replaces that in-memory data structures, with hand-written code for writing them to persistent storage. There are now 4 files associated with this class, holding various pieces of its state that should be consistent. These are everything from a main XML file of account information that must always be retained, to a binary file of per-day statistics that can be thrown away at any time. Writes of these files as scheduled at various times based on their importance of the frequency at which they change. Because the database no longer exists, there needs to be a new explicit interface for interacting with the sync manager database. This is provided by new APIs on IContentService, with a hidden method on ContentResolver to retrieve the IContentService so that various system entities can use it. Other changes in other projects are required to update to the new API. The goal here is to have as little an impact on the code and functionality outside of SyncStorageEngine, though due to the necessary change in API it is still somewhat extensive.
* Ignore layout bin directories in git.Raphael2009-05-052-1/+3
|
* Merge branch 'readonly-p4-donut' into donutMitsuru Oshima2009-04-281-0/+8
|\
| * AI 147976: Compatibility mode support. Part 2.Mitsuru Oshima2009-04-281-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Introduced ApplicationScale (may not be good name. CompatibilityScale? CanvasScale? Pls let me know if you have better idea) * Changes to RootView / SurfaceView - Makes the app believe it's running in the supported density/resolution. - Makes the window manager believe it's running at the right density/resolution. * Added methods to Rect/Event for scaling up/down. Known issues: * certain kind of images (such as nine patch for buttons) seesm to be loaded not by app, thus does not take the scale into account, which, in turn, is causing layout issue. * ZoomButton in MapView is rendered in wrong place * Transparent region on Surface is not correct * Specifying different densities in one process is not working. BUG=1770627 Automated import of CL 147976
* | Add file to ignore the content of the layoutlib/Bridge Eclipe bin folder.Xavier Ducrohet2009-04-241-0/+1
|/
* AI 146485: am: CL 146411 Fix BridgeCanvas#drawRoundRectXavier Ducrohet2009-04-161-2/+2
| | | | | | | Original author: xav Merged from: //branches/cupcake/... Automated import of CL 146485
* AI 144547: Fix change 144342 by making it active only during overlay processing.Robert Greenwalt2009-04-031-2/+5
| | | | | | BUG=1754390 Automated import of CL 144547
* AI 144342: Fix bag (string-array,etc) behavior with overlays.Robert Greenwalt2009-04-022-4/+24
| | | | | | | | | | | | We used to replace elements in the default with elements from the overlay. This change causes us to empty the array first so if the overlay array is smaller we don't end up with elements from the default array showing through at the end of the array. Ex: [A,B,C] and overlay [D] should give [D] but used to give [D,B,C]. BUG=1754390 Automated import of CL 144342
* AI 144309: am: CL 144308 aapt extensions: required sdk version, dependent ↵Suchi Amalapurapu2009-04-021-69/+142
| | | | | | | | | | | software libraries, gadgets Add new attributes for sdk version, software libs and gadgets BUG = 1730924 Original author: asuchitra Merged from: //branches/cupcake/... Automated import of CL 144309
* auto import from //branches/cupcake_rel/...@140373The Android Open Source Project2009-03-181-5/+6
|
* auto import from //branches/cupcake_rel/...@138607The Android Open Source Project2009-03-133-7/+85
|
* auto import from //depot/cupcake/@136594The Android Open Source Project2009-03-053-33/+47
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-03190-0/+42108
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-03190-42010/+0
|
* auto import from //depot/cupcake/@132589The Android Open Source Project2009-03-035-120/+22
|
* auto import from //depot/cupcake/@137055The Android Open Source Project2009-03-025-22/+120
|
* auto import from //branches/cupcake/...@132569The Android Open Source Project2009-02-201-0/+10
|
* auto import from //branches/cupcake/...@131421The Android Open Source Project2009-02-131-0/+6
|
* auto import from //branches/cupcake/...@130745The Android Open Source Project2009-02-1019-165/+518
|
* auto import from //branches/cupcake/...@127101The Android Open Source Project2009-01-201-3/+2
|
* auto import from //branches/cupcake/...@126645The Android Open Source Project2009-01-159-183/+373
|
* auto import from //branches/cupcake/...@125939The Android Open Source Project2009-01-0920-98/+616
|
* Code drop from //branches/cupcake/...@124589The Android Open Source Project2008-12-1729-126/+548
|
* Initial ContributionThe Android Open Source Project2008-10-21186-0/+40512