- 06 Jun, 2016 1 commit
-
-
Andreas Gampe authored
Another update. Bug: 27248115 Change-Id: Ie0c3b8624a0f43c400a71759c176c02c56d270af
-
- 20 Apr, 2016 1 commit
-
-
Andreas Gampe authored
Move EMPTY_PARCEL into an inner holder class. Add holder to preloaded-classes. Clean up dependencies. Allows to compile-time initialize: * android.os.BaseBundle * android.os.Bundle * android.os.PersistableBundle * android.telephony.CarrierConfigManager Bug: 27265238 Change-Id: Ib8017aa419c2985963b3c68a8046462a38652ef2
-
- 12 Apr, 2016 1 commit
-
-
Andreas Gampe authored
Bug: 27248115 Change-Id: Ib7d73b3e24dd71ae1cc8c245bdc953dea6136486
-
- 23 Feb, 2016 1 commit
-
-
Doris Liu authored
By default, AVD animates on RT thread. But since in some cases there's a need for a finer control on when the frame update for the animation should happen, such as coordiating the AVD animation with other animations that run on UI thread, we are providing a way to force the AVD to run on UI thread. Bug: 27278616 Change-Id: I372ecd3dc52e3fa0bdce3a1e9c19443f9b199027
-
- 19 Feb, 2016 1 commit
-
-
Andreas Gampe authored
Update the preloaded-classes list for Android N. Bug: 27248115 Change-Id: Iaf726fa318a4495a5af57d2845a427095bc5f831
-
- 22 Dec, 2015 3 commits
-
-
Przemyslaw Szczepaniak authored
(cherry picked from commit b0868054) Change-Id: Ieb1953e33dab7f852740872af110a938eb5c1ca4
-
Przemyslaw Szczepaniak authored
Bug: 25337946 (cherry picked from commit 8a7c1606) Change-Id: I1bfce4129887d7cbfc02d92641b44920d7cdbbee
-
Przemyslaw Szczepaniak authored
(cherry picked from commit f1e52016) Change-Id: I4fd13c4dc373482c1235b54746fdf7f029a80dc2
-
- 02 Dec, 2015 1 commit
-
-
Przemyslaw Szczepaniak authored
Change-Id: I8267fc4cd41868f406e32a64ee750c0e5ca6098d
-
- 27 Nov, 2015 1 commit
-
-
Przemyslaw Szczepaniak authored
Bug: 25337946 Change-Id: Ib4fac6fa9f534b8654e5ca158bbaedb2393772ba (cherrypicked from 43ea2cc2a81926a6b2ca13d41f4eab089640129e)
-
- 23 Nov, 2015 1 commit
-
-
Przemyslaw Szczepaniak authored
(cherry-picked from 90d8781876643dc730aecee20f34dbe9e695653c) Change-Id: If184fe9e40ba4c21fdb05d38c2975abfb4d0410b
-
- 20 Nov, 2015 1 commit
-
-
Przemyslaw Szczepaniak authored
(cherry-picked from 90d8781876643dc730aecee20f34dbe9e695653c) Change-Id: If184fe9e40ba4c21fdb05d38c2975abfb4d0410b
-
- 18 Nov, 2015 1 commit
-
-
Chad Brubaker authored
The provider is installed early in ActivityThread to ensure that no TLS objects are created in the application before the provider is installed. Change-Id: I5f77addfa75a4ee19301de54e01507d8dca33657
-
- 07 Aug, 2015 1 commit
-
-
Roozbeh Pournader authored
Bug: 18134313 Bug: 20158206 Change-Id: If46cdbd9d558e6592280b2b95f00b87d04de70a2
-
- 19 Jun, 2015 1 commit
-
-
Andreas Gampe authored
Update for Android M release. Bug: 21760614 Change-Id: Ib1b1ac60da894ad4a4b6b7db37d8930b0d2b9046
-
- 13 May, 2015 1 commit
-
-
Alex Klyubin authored
This moves the non-public API classes backing Android Keystore from android.security to android.security.keystore, a package specially created for Android Keystore. Bug: 18088752 Change-Id: Ibf04d6a26c54d310b0501fc5e34f37b1176324ad
-
- 29 Apr, 2015 1 commit
-
-
Alex Klyubin authored
Bouncy Castle JCA provider incorrectly declares that its Cipher, Mac, Signature, and KeyAgreement implementations accept arbitrary keys ( including AndroidKeyStore keys). As a result, when a Cipher, Mac, Signature, or KeyAgreement instance is requested from JCA without explicitly specifying the provider (which follows best practices) and then initialied with an AndroidKeyStore key, JCA chooses the BouncyCastle's implementation, which in turn blows up because it can't handle such keys. The workaround is to install Cipher, Mac, Signature, and KeyAgreement implementations backed by AndroidKeyStore as a higher-priority JCA provider than the Bouncy Castle one. This is achieved by splitting out the above implementations from AndroidKeyStoreProvider into AndroidKeyStoreBCWorkaroundProvider and installing the AndroidKeyStoreProvider at the usual priority (below Bouncy Castle) and the AndroidKeyStoreBCWorkaroundProvider at above Bouncy Castle priority. Bug: 20691708 Change-Id: I336464f4a49bc30c6845ddc4e84b07f4105424dd
-
- 24 Apr, 2015 1 commit
-
-
Fyodor Kupolov authored
SystemServiceRegistry class should be preloaded in the zygote. Bug: 20559324 Change-Id: I3120c7e42b50c54213513a04d7135d745c8abd7c
-
- 23 Apr, 2015 1 commit
-
-
Neil Fuller authored
Bug: 20252074 Bug: 20396452 Change-Id: I17de761e0d81caa2fc280b5cc368ee6113a5d655
-
- 14 Apr, 2015 1 commit
-
-
Chet Haase authored
Previous ActionBar animations didn't handle configuration changes or other situations in which the view would get detached. listeners would stay on the view and would attempt to do something nonsensical in the new window. This new approach removes listeners on window detach to avoid this problem. Issue #20125407 Settings Crashes when changing orientation of device Change-Id: I0b3bbd0f6fc23cdb4cbd646b0d2772d72d3d795d
-
- 03 Apr, 2015 1 commit
-
-
Alex Klyubin authored
This avoids loading all AndroidKeyStore crypto SPI classes when the AndroidKeyStore provider is instantiated and installed. This provider is installed early on during the initialization of each app. Most apps don't need these classes loaded. Bug: 18088752 Change-Id: Ib43c9dd6a7d434b128916e0f9c8652ba61df0d47
-
- 05 Mar, 2015 1 commit
-
-
Brian Carlstrom authored
Bug: 19323020 Change-Id: I61e9d2dd5d06fe2353da17e5646f259122e5ea98
-
- 04 Dec, 2014 1 commit
-
-
Alex Klyubin authored
libcore's DefaultHostnameVerifier no longer exists. See https://android-review.googlesource.com/#/c/117453/. Bug: 18481199 Change-Id: I5c07e058aaaf8531d420058cfd104c4e751757a3
-
- 09 Nov, 2014 1 commit
-
-
Andreas Gampe authored
Tighter list derived from usage. Bug: 18248625 Change-Id: I3796fc13f880b1219579103c81bc2d1d727eb4df
-
- 03 Oct, 2014 1 commit
-
-
Andreas Gampe authored
This reverts commit 16626a7e. Remove three classes that break Shamu booting. Bug: 17480683 Bug: 17791590 Change-Id: Ic487c5344d4186ea5205f117f07ca3ab7d945fb7
-
- 02 Oct, 2014 1 commit
-
-
Andreas Gampe authored
Breaks shamu for unknown reason. This reverts commit da305061. Bug: 17480683 Change-Id: Id10ff18ef6e3acb5eb84196f7e5608add7edeb66
-
- 29 Sep, 2014 1 commit
-
-
Andreas Gampe authored
Bug: 17480683 Change-Id: I06d2a64d2f9544cac0f5940cb9129cd5668740ba
-
- 05 Aug, 2014 1 commit
-
-
Torne (Richard Coles) authored
We don't want to preload the WebView library in the zygote process any more, as loading an updatable WebView in the zygote is a stability risk. The memory benefits of preloading will be obtained in other ways. Bug: 13005501 Change-Id: Ic89f2a1d057dc92b01fb775bf326b47ac2d4caa2
-
- 17 Jul, 2014 1 commit
-
-
Torne (Richard Coles) authored
We don't want to preload the WebView library in the zygote process any more, as loading an updatable WebView in the zygote is a stability risk. The memory benefits of preloading will be obtained in other ways. Bug: 13005501 Change-Id: Ic89f2a1d057dc92b01fb775bf326b47ac2d4caa2
-
- 30 Jun, 2014 1 commit
-
-
Brian Carlstrom authored
Change-Id: If0b1bfa2fa1fc80351c11ff2936e1b204539aa64
-
- 23 Jun, 2014 1 commit
-
-
Brian Carlstrom authored
Change-Id: I391dcd9b3f88f5733c28498055f23801ff10948b
-
- 25 Apr, 2014 1 commit
-
-
Dmitry Grinberg authored
Profiled on a clockwork device. Probably not suitable for phones/tablets. Change-Id: I68c262160c9639e3a95aee5f66525fac2991a2a0
-
- 21 Apr, 2014 1 commit
-
-
Lajos Molnar authored
remove android.media.videoeditor.* No longer supported and should not be used. Bug: 13542518 Change-Id: I12de122443f0289ab1dfdd8b553e572a830cf412
-
- 24 Mar, 2014 1 commit
-
-
Ashok Bhat authored
android.debug.JNITest class no longer exists in this project. This patch updates preloaded-classes accordingly to avoid spurious warning during boot. Change-Id: Ia4a5a1858f6c87fbc594a623adb95454334361ea Signed-off-by:
Ashok Bhat <ashok.bhat@arm.com>
-
- 27 Feb, 2014 1 commit
-
-
Mike Lockwood authored
Change-Id: I0f86f7ab2ef132fbd12f85ff96e448d189af7177
-
- 31 Jan, 2014 1 commit
-
-
Kenny Root authored
No longer needed since Conscrypt is the main provider. Change-Id: Iee741ef376af2de52db79df07e96057438778bc6
-
- 20 Dec, 2013 1 commit
-
-
Chris Craik authored
Removes unneeded indirection layer Change-Id: I75d3e369eda2788cbc52a3575c4e1c521e842f59
-
- 13 Dec, 2013 2 commits
-
-
Kenny Root authored
Not needed since java.util.Objects implements all the needed functionality. Change-Id: Icd31d49a9801d1705427f028e9ac927d58e7d34c
-
Kenny Root authored
Needed for Bouncycastle 1.50 upgrade with art. Change-Id: I901122c1ce21abba437a7537e70331724c3cbc9c
-
- 09 Dec, 2013 1 commit
-
-
Kenny Root authored
Some cipher modes were removed from OpenSSLCipher. This change removes those classes from the preloaded classes list. Change-Id: Ib4450c392513973836684b4d5df7fffb200b6260
-