- 17 Oct, 2012 4 commits
-
-
Kenny Root authored
-
Kenny Root authored
Previous commit attempted to move setfilecon above chown, but mistakenly squashed libdir and pkgdir setfilcon into one incorrect setfilecon. Change-Id: I1ad00eae8a0e69ae88ce47cd5571558ce1ad2145
-
Kenny Root authored
-
Kenny Root authored
Change-Id: I6c2161471f657aa1645695ffd56ff434b0c2b426
-
- 13 Oct, 2012 1 commit
-
-
Kenny Root authored
-
- 10 Oct, 2012 1 commit
-
-
Kenny Root authored
Bug: http://code.google.com/p/android/issues/detail?id=21838 Change-Id: I1092499906f0cafe5a3c42ab2579edf3763cedb7
-
- 02 Oct, 2012 6 commits
-
-
Kenny Root authored
* commit '07b4339b': Change androidfw tests to native test target
-
Kenny Root authored
-
Kenny Root authored
* commit '77728b01': Change installd tests to native test target
-
Kenny Root authored
Change the androidfw tests to the BUILD_NATIVE_TEST target so they end up in the correct directory. Also remove the module tags and C include paths. The include paths are automatically added when the library is used. Change-Id: Ia47f6c25130c5068b89d6dc067e5d9c714a6d08a
-
Kenny Root authored
-
Kenny Root authored
Change-Id: Ifb2ba004e74d55ffbf01557b59ceef3232762d28
-
- 26 Sep, 2012 3 commits
-
-
Xavier Ducrohet authored
* commit 'fb34490f': Fix writing text version of styleable IDs.
-
Xavier Ducrohet authored
-
Xavier Ducrohet authored
Change-Id: I3f2614689a597de3fd46628c020cf649a808c82f
-
- 24 Sep, 2012 1 commit
-
-
Amith Yamasani authored
* commit '5e8cbdc0': Fixing services start order that impacts ICS - JB upgrade
-
- 23 Sep, 2012 1 commit
-
-
Amith Yamasani authored
-
- 19 Sep, 2012 2 commits
-
-
Adam Powell authored
* commit 'ab12f0f7': Implement resolving of icon attributes to resIds in AlertController
-
Adam Powell authored
-
- 18 Sep, 2012 3 commits
-
-
Felipe Ramos authored
JB has introduced LockSettingsService. When the phone is upgrading from ICS, that used another way to store lock settings, the LockSettingsService needs to import these settings to store in its database. This happens when the systemReady() method of this class is called by SystemServer. The problem resides in the fact that the DevicePolicyManagerService actually needs to access the LockSettingsService during its systemReady() initialization, causing invalid values to be read by it which propagates and ends up causing a invalid return in the method isActivePasswordSufficient. If user had a Google corporate account that enforces password related policies through Google Apps Device Policy (GADP) app in ICS, when he upgrades to JB, the GADP will throw a notification saying that the password doesn't meet the required policies and needs to be changed, incorrectly, since it wasn't touched during upgrade. This fix initializes the LockSettingsService before the DevicePolicyManagerService, which is the correct way since the latter uses the first in its initialization. This prevents this issue to happen, and probably future issues, depending on the way that LockSettingsService evolves. Change-Id: I3d4334a8b728f0ad9ae744cece430d15af25a0b7
-
Mike Lockwood authored
* commit '1e86994c': MtpData bmp format file can't recognize when copy bmp into DUT
-
Mike Lockwood authored
-
- 17 Sep, 2012 4 commits
-
-
Xavier Ducrohet authored
* commit '31820a35': Add --output-text-symbols option to aapt.
-
Xavier Ducrohet authored
* commit 'd7252571': Add --error-on-failed-insert option to aapt.
-
Xavier Ducrohet authored
-
Xavier Ducrohet authored
-
- 14 Sep, 2012 5 commits
-
-
Elliott Hughes authored
* commit '297ad257': Deprecate those parts of DateUtils the documentation says not to use.
-
Elliott Hughes authored
-
Elliott Hughes authored
Applications using these fields and methods are just asking for i18n bugs. Also @deprecate two int[]s that were never meant to be public. Change-Id: I29b3a1c0c663fe344d2567df6ed3bb537270b3b7
-
Raph Levien authored
* commit 'f4afc401': framework: fix bug for uninitialized variable
-
Raph Levien authored
-
- 12 Sep, 2012 7 commits
-
-
Elliott Hughes authored
* commit 'cceed1df': Include <sys/socket.h> instead of <linux/socket.h>.
-
Elliott Hughes authored
-
Elliott Hughes authored
In newer kernels, <linux/socket.h> no longer contains some of the stuff you're using. Change-Id: I92c6847d73c20fb49d0db15c1cc15aa07fb5d44d
-
Xavier Ducrohet authored
Library projects in the SDK are built using --non-constant-id to generate a temporary R.java class. When the library is packaged with the application to generate an apk, the R class is recreated with the proper IDs due to all the resources coming from the app and all the libraries. However for large apps with many libraries (each with their own R class in their package), this means a lot of unnecessary IDs: all R classes contains all the IDs including for resources from by projects they don't have access through the dependency graph. For really large apps (X,000 resources), with lots of libraries (10+), this can generate tens of thousands of resources, which can trigger dalvik's limit of 65K fields and methods per dex files. This changes lets aapt generate not only the R class but a simple text file containing the list of all those IDs so that it is easier to parse back. The SDK build system will not ask aapt to generate the R class of the libraries (through the --extra-packages option), instead it will then read this file to know what IDs are needed for each library and generate a much smaller R class for each library (using the same text file output from compiling all the resources to get the final integer value). Change-Id: I4db959fec372cf3ead9950e4b2b82fa1ae7eed2d
-
Xavier Ducrohet authored
The new SDK build system give the ability to insert versionCode/Name and min/targetSdkVersion in the manifest but aapt won't replace those if they already exist. The main problem is that aapt doesn't actually fail when it doesn't replace them, making the output not what the developer wanted. This patch set adds an option to aapt to make it return an error if the insert failed because the attribute already existed. Change-Id: I8938ec1238da407a8562c974e9598db39001ffd9
-
Jean-Baptiste Queru authored
* commit '5c09d605': Fix CacheBitmap crash issue when using H/W UI rendering
-
Jean-Baptiste Queru authored
-
- 11 Sep, 2012 2 commits
-
-
Robert Greenwalt authored
* commit '2415841c': EthernetDataTracker: indicate link up based on flags
-
Robert Greenwalt authored
-