153008 Commits

Author SHA1 Message Date
Andrew Solovay
a7f226b860 docs: (Preview) Building an Android Messaging App guide.
See the first comment for doc staging location.

Change-Id: Ibfa0f43abefbdd03c5468186b2ec0c76ed6c9ade
2014-11-18 02:08:05 -08:00
Andrew Solovay
4a9945e9c0 am 7fe755e6: docs: (Preview) Building Android Audio Playback Apps guide.
* commit '7fe755e66b10244da2382c11f9244346b8184e48':
  docs: (Preview) Building Android Audio Playback Apps guide.
2014-11-18 08:59:15 +00:00
Andrew Solovay
7fe755e66b docs: (Preview) Building Android Audio Playback Apps guide.
Doc was previously titled "Building Android Media Apps"; per request,
changed "Media" to "Audio" whenever possible, and moved file location
accordingly.

See the comment after patch set 5 for the updated staging location.

Change-Id: I0d657851d44b46cdfb1b5806a51dad0565312c04
2014-11-18 00:46:58 -08:00
Quddus Chong
f76cf8bfd3 am c6aed461: docs: Added developer docs for Android Auto 11/18 release.
* commit 'c6aed4612827be0359d2022f6a38a0e5fce0609c':
  docs: Added developer docs for Android Auto 11/18 release.
2014-11-18 08:31:31 +00:00
Quddus Chong
c6aed46128 docs: Added developer docs for Android Auto 11/18 release.
Change-Id: I2e3a2010f3b40f81c56dde9f710284cd2332217c
2014-11-18 00:25:52 -08:00
Eric Gilmore
c31a73c187 am 343c4193: Merge "Adding app quality criteria." into lmp-docs
* commit '343c4193c0a1974e996eecdcab8d70cdcd4184a0':
  Adding app quality criteria.
2014-11-18 05:36:42 +00:00
Eric Gilmore
343c4193c0 Merge "Adding app quality criteria." into lmp-docs 2014-11-18 05:30:56 +00:00
Eric Gilmore
a4ebec8f55 Adding app quality criteria.
Change-Id: Id4b9f0632642b9fd3a4312ec3bc61136a6043436
2014-11-17 21:22:10 -08:00
Ricardo Cervera-Navarro
96424f4a43 am 5b11c51d: Merge "docs:eclipse-migrate update" into lmp-docs
* commit '5b11c51d87ad99d0ccad6bf8b3d1bd4f626e5f48':
  docs:eclipse-migrate update
2014-11-17 19:14:40 +00:00
Ricardo Cervera-Navarro
5b11c51d87 Merge "docs:eclipse-migrate update" into lmp-docs 2014-11-17 19:07:04 +00:00
smain@google.com
d35b858706 am 5e5af93b: remove preview system image links bug: 18376658
* commit '5e5af93b962c5ec97f7c2b841d4e9076904dd544':
  remove preview system image links bug: 18376658
2014-11-14 18:53:39 +00:00
smain@google.com
5e5af93b96 remove preview system image links
bug: 18376658

Change-Id: I5f0e79e4261a004a84a09c0095d77f985abdf868
2014-11-14 10:15:12 -08:00
Sarah Maddox
aa3a93ede7 am 67b0ac71: Merge "docs: Clarifies the difference between the Android framework location APIs and the Google Play services location APIs. Fixes 80-character line length." into lmp-docs
* commit '67b0ac719a87ba52c849a6cf055ef235f230dd6e':
  docs: Clarifies the difference between the Android framework location APIs and the Google Play services location APIs. Fixes 80-character line length.
2014-11-14 00:02:38 +00:00
Sarah Maddox
67b0ac719a Merge "docs: Clarifies the difference between the Android framework location APIs and the Google Play services location APIs. Fixes 80-character line length." into lmp-docs 2014-11-13 23:57:32 +00:00
kmccormick
30aee7fccb am feb1347b: Merge "Doc update: new reg error code + snippet" into lmp-docs
* commit 'feb1347b2b411be03c640e8d61bfc3b428932e31':
  Doc update: new reg error code + snippet
2014-11-13 22:24:44 +00:00
kmccormick
feb1347b2b Merge "Doc update: new reg error code + snippet" into lmp-docs 2014-11-13 22:21:03 +00:00
Renato Mangini
6f41522d68 am c9fc837f: Add new samples to what\'s new page.
* commit 'c9fc837fb3d866484a8ed3e61f2ba551f76af66b':
  Add new samples to what's new page.
2014-11-13 03:54:11 +00:00
Renato Mangini
c9fc837fb3 Add new samples to what's new page.
Also reverted the order on the page to show most recent samples first.

Bug: 18323953
Change-Id: I79b01fa71547f4a7d843f52bdd1853dd8fbe54a8
2014-11-12 18:55:06 -08:00
Sarah Maddox
f378f7ff18 docs: Clarifies the difference between the Android framework location APIs
and the Google Play services location APIs.
Fixes 80-character line length.

Bug: 18080006
Change-Id: I463e0bfe47e9113af2ce4e03806d25e082a9b285
2014-11-13 13:41:05 +11:00
Renato Mangini
40ac90e99d am 1b657d92: Fix the order of sample categories left nav.
* commit '1b657d924301d1caa132797f2ab397ba48429e6b':
  Fix the order of sample categories left nav.
2014-11-12 23:33:47 +00:00
Renato Mangini
1b657d9243 Fix the order of sample categories left nav.
Bug: 18323953
Change-Id: Iea882fed74428d092c02e3cfcf2171c4c596b8a8
2014-11-12 14:07:48 -08:00
Jeff Sharkey
d68b87cdd4 Recover apps with malformed certificates.
There was a window of time in Lollipop where we persisted certificates
after they had passed through a decode/encode cycle.  The well-written
OpenSSL library was liberal when decoding (allowing slightly malformed
certs to be parsed), but then strict when encoding, giving us
different bytes for effectively the same certificate.

A related libcore change (0c990ab4a90b8a5492a67b2b728ac9a4a1ccfa1b)
now returns the original bytes verbatim, fixing both pre-Lollipop
installs and installs after that change.

This change recovers any apps that had been installed during the
window of time described above by doing a one-time check to see if
the certs are effectively equal.

Bug: 18228011
Change-Id: Ib82bd6db718d0490d7a26c9c1014b7c8457a7f2d
2014-11-12 13:16:06 -08:00
smain@google.com
8d88f19bfe am f9c4f6b5: Merge "fix code type and mention api level 21 exception for bindService()" into lmp-docs
* commit 'f9c4f6b56e1392a411e2996a2bf372873ebf14da':
  fix code type and mention api level 21 exception for bindService()
2014-11-12 17:44:52 +00:00
Renato Mangini
a53b8badb9 am 4b7b68d8: Add "notification" category for samples.
* commit '4b7b68d824ee8bf184f6bfb05f75c74c129a9f8e':
  Add "notification" category for samples.
2014-11-12 17:44:48 +00:00
smain@google.com
f9c4f6b56e Merge "fix code type and mention api level 21 exception for bindService()" into lmp-docs 2014-11-12 17:41:36 +00:00
smain@google.com
9adc33a658 fix code type and mention api level 21 exception for bindService()
Change-Id: I45460a1559960a32818e9cc88b1241b26f2f1f7d
2014-11-12 09:38:00 -08:00
Renato Mangini
4b7b68d824 Add "notification" category for samples.
Bug: 18323953
Change-Id: Ifb78015604fd203baaf5f4c6496a86aa6c831227
2014-11-11 19:51:53 -08:00
kmccormick
de53b041c1 Doc update: new reg error code + snippet
Change-Id: Ie8df1cc68ebe5a2a6589d34f16e554e36dca546e
2014-11-11 16:56:54 -08:00
Aravind Akella
1375d3744c Sensor documentation fixes.
Bug: 17526079
Change-Id: I664e5e2d5103b87ed02f082551e46513f64b95a1
(cherry picked from commit 1f9b32f006f7c506d9df5bf73294710665746397)
2014-11-12 00:52:44 +00:00
Deepanshu Gupta
a44fdb9e21 Merge "Don't skip loading object animator." into lmp-dev 2014-11-11 17:11:24 +00:00
Deepanshu Gupta
2c5cddbd07 Don't skip loading object animator.
This is used by Buttons as part of StateListAnimator.

Change-Id: Id370869e71898d46e11bbd17ad31169c9f9f5274
2014-11-11 15:21:19 +00:00
Eric Laurent
75c306ddc7 am df878bd3: am ced2f74a: am e8c1a97f: am 3b92fc04: am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant automerge: 8db769d
automerge: 9e0ed1c

* commit '9e0ed1c2d67bc2ec74e24782f3738889fa0d79d2':
2014-11-11 01:34:45 +00:00
Eric Laurent
9e0ed1c2d6 am df878bd3: am ced2f74a: am e8c1a97f: am 3b92fc04: am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant
automerge: 8db769d

* commit '8db769dd56822a59f1997a9cb53ed02d3d1cb8dd':
  AudioEffect JNI: use new max preprocessing constant
2014-11-11 00:22:33 +00:00
Eric Laurent
3011e1be2c am 8db769dd: am df878bd3: am ced2f74a: am e8c1a97f: am 3b92fc04: am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant
* commit '8db769dd56822a59f1997a9cb53ed02d3d1cb8dd':
  AudioEffect JNI: use new max preprocessing constant
2014-11-10 23:38:23 +00:00
Eric Laurent
8db769dd56 am df878bd3: am ced2f74a: am e8c1a97f: am 3b92fc04: am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant
* commit 'df878bd3fc63f26e91b055e39ba63c53c14b31a0':
  AudioEffect JNI: use new max preprocessing constant
2014-11-10 23:33:52 +00:00
Eric Laurent
df878bd3fc am ced2f74a: am e8c1a97f: am 3b92fc04: am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant
* commit 'ced2f74ac170439231f189e31538b9f403909966':
  AudioEffect JNI: use new max preprocessing constant
2014-11-10 23:29:07 +00:00
Eric Laurent
ced2f74ac1 am e8c1a97f: am 3b92fc04: am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant
* commit 'e8c1a97fa33797df528265b6f0b0c2c39ac2c589':
  AudioEffect JNI: use new max preprocessing constant
2014-11-10 23:24:02 +00:00
Eric Laurent
e8c1a97fa3 am 3b92fc04: am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant
* commit '3b92fc04700a68dab3c3c4a873535837c4e51e8b':
  AudioEffect JNI: use new max preprocessing constant
2014-11-10 23:20:06 +00:00
Eric Laurent
3b92fc0470 am 1c2b0d52: AudioEffect JNI: use new max preprocessing constant
* commit '1c2b0d52144dc94a7d1dcefb7e4fbd7fb29f5202':
  AudioEffect JNI: use new max preprocessing constant
2014-11-10 23:11:00 +00:00
Joe Fernandez
3bd60359e2 am c2f2a725: Merge "docs:builds tools 21.1.1 update" into lmp-docs
* commit 'c2f2a72571a485671f36e9d5b5c1fd9e788c11cd':
  docs:builds tools 21.1.1 update
2014-11-10 22:55:20 +00:00
Joe Fernandez
c2f2a72571 Merge "docs:builds tools 21.1.1 update" into lmp-docs 2014-11-10 22:50:17 +00:00
Dirk Dougherty
f253fe3e67 am 602c63f8: Merge "Add Nexus 6 and Nexus 9 to the device framer." into lmp-docs
* commit '602c63f8405466dab18b6bbd93eb682900cf459f':
  Add Nexus 6 and Nexus 9 to the device framer.
2014-11-10 22:11:54 +00:00
Deepanshu Gupta
5c22a79baf Merge "Fix setting styles in custom views." into lmp-dev 2014-11-10 20:28:43 +00:00
Deepanshu Gupta
8657baa06d Fix setting styles in custom views.
Bug: http://b.android.com/78842
Change-Id: I5d4571d94d96b00419acc258c9e2b519367b689d
2014-11-10 20:10:55 +00:00
Dirk Dougherty
602c63f840 Merge "Add Nexus 6 and Nexus 9 to the device framer." into lmp-docs 2014-11-10 19:45:18 +00:00
Eric Laurent
1c2b0d5214 AudioEffect JNI: use new max preprocessing constant
Bug: 18226810.
Change-Id: Ica5677da247268306b34dfce38f25394586817fd
(cherry picked from commit b27a8a5bcc40054f6d775d070bc2de6eb996d1c2)
2014-11-10 19:44:15 +00:00
Deepanshu Gupta
97c04ac7ed Merge "Add primitive shadows support to LayoutLib" into lmp-dev 2014-11-10 18:58:30 +00:00
Deepanshu Gupta
f305d2c4a8 Merge "Remove needlessly thrown IOException." into lmp-dev 2014-11-10 18:54:21 +00:00
Rich Slogar
2d8cd7cbb2 docs:builds tools 21.1.1 update
Change-Id: I96fd6ad0926414664b192ca41d13f49f25365e4a
2014-11-10 09:59:15 -08:00
Ricardo Cervera
43f46ab99d am e627b94c: Merge "docs: Material design shadow fixes." into lmp-docs
* commit 'e627b94c76ad144abb0207efcdc6b1cb3855bc14':
  docs: Material design shadow fixes.
2014-11-10 16:42:20 +00:00