1. 03 Aug, 2012 1 commit
  2. 14 Jun, 2012 1 commit
  3. 13 Jun, 2012 1 commit
  4. 13 May, 2012 1 commit
    • Svetoslav Ganov's avatar
      Removing default accessibility gesture handling. · 7b1e0c70
      Svetoslav Ganov authored
      1. The initial design was to have some accessibility gestures
         being handled by the system if the gesture handling access
         service does not consume the gesture. However, we are not
         sure what a good default is and once we add a default handler
         we cannot remove it since people may rely on it. Thus, we
         take the simples approach and let the accessibility service
         handle the gestures. If no gestures are handled the system
         will work in explore by touch as before.
      
      bug:5932640
      
      Change-Id: I865a83549fa03b0141d27ce9713e9b7bb45a57b4
      7b1e0c70
  5. 16 Apr, 2012 1 commit
  6. 28 Mar, 2012 1 commit
  7. 03 Feb, 2012 1 commit
  8. 10 Oct, 2011 1 commit
  9. 06 Oct, 2011 1 commit
  10. 03 Oct, 2011 1 commit
  11. 30 Sep, 2011 1 commit
    • Ying Wang's avatar
      Correction the use of SMALLER_FONT_FOOTPRINT · 46b20e7f
      Ying Wang authored
      SMALLER_FONT_FOOTPRINT is a BoardConfig variable that's only available
      in Android.mks but not product config makefiles.
      
      Change-Id: I1784b6e8c744ffcca1538e76d338f5800f150e72
      46b20e7f
  12. 26 Sep, 2011 1 commit
  13. 23 Sep, 2011 1 commit
    • Russell Brenner's avatar
      Replaced Lohit_Hindi with Lohit-Devanagari · 9d8c7e82
      Russell Brenner authored
      Lohit-Devanagari is now provided by external/lohit-fonts, replacing
      Lohit_Hindi from here. Removed font from fonts.mk and renamed in
      fallback_fonts.xml.
      
      Bug: 5364436
      Change-Id: I0b8f65dbfdbec1802fba526209d7f88d2cf64fc4
      9d8c7e82
  14. 21 Sep, 2011 1 commit
  15. 13 Sep, 2011 1 commit
  16. 07 Sep, 2011 1 commit
    • Irfan Sheriff's avatar
      Rename WpsConfiguration to Wps · 489a9d81
      Irfan Sheriff authored
      For the purpose of exposing the class as a storage for Wps
      info with p2p, it is better to just call it Wps
      
      Bug: 5247957
      Change-Id: Iaebef958dd8f08fdbeb4b9d7fa5ad5527400710d
      489a9d81
  17. 27 Aug, 2011 1 commit
    • Nick Pelly's avatar
      Improve NDEF push API · c84c89a6
      Nick Pelly authored
      Introduce
        setNdefPushMessage()
        setNdefPushMessageCallback()
        setNdefPushCompleteCallback()
      
      Deprecate public API
        enableForegroundNdefPush()
        disableForegroundNdefPush()
      
      Hide & Deprecate staged (public but never released) API
        enableForegroundNdefPushCallback()
      
      The new API's do not require the application to explicitly call
      enable()/disable() in onPause()/onResume(), we use a Fragment behind
      the scenes to manager this automatically.
      
      NDEF Push can be disabled by using a null parameter, so each
      enable()/disable() pair is collapsed to a single set() call.
      
      Application code should now look something like:
      
          public void onCreate() {
              NfcAdapter adapter = NfcAdapter.getDefaultAdapter(this);
              if (adapter != null) {  // check that NFC is available on this device
                  adapter.setNdefPushMessage(myNdefMessage, this);
              }
          }
      
      And that's it - no need to explicitly hook into onPause() and onResume() events.
      
      Also - introduce a generic NfcEvent class that is provided as a parameter on
      all NFC callbacks. Right now it just provides the NfcAdapter, but using
      the wrapper classes allows us to add more fields later without changing
      the callback signature. (i'm thinking Bluetooth).
      
      Change-Id: I371dcb026b535b8199225c1262eca64ce644458a
      c84c89a6
  18. 24 Aug, 2011 1 commit
  19. 23 Aug, 2011 1 commit
    • Jean-Michel Trivi's avatar
      Bug 5045498 New implementation of remote control API · 4426e42a
      Jean-Michel Trivi authored
      Remote control displays expose an IRemoteControlDisplay interface
       which they register through AudioManager.
      Remote control clients create a RemoteControlClient object, which
       implicitely exposes an IRemoteControlClient interface registered
       in AudioService through AudioManager.
      AudioService tells all clients and displays when a new client
       is the one that should be displayed.
      A client's data gets sent to the display when it is valid, or
       it sets new data (while being valid).
      
      The implementation for setting metadata and album art is temporary,
       and will migrate to the MetadataEditor API in future CLs.
      
      Change-Id: Ibab6ea1d94c68f32482c760c6ae269541f885548
      4426e42a
  20. 17 Aug, 2011 1 commit
  21. 12 Aug, 2011 3 commits
  22. 02 Aug, 2011 1 commit
  23. 04 Jul, 2011 1 commit
  24. 10 Jun, 2011 1 commit
  25. 02 Jun, 2011 1 commit
    • Jeff Sharkey's avatar
      Collect historical network stats. · 75279904
      Jeff Sharkey authored
      Periodically records delta network traffic into historical buckets to
      support other services, such NetworkPolicyManager and Settings UI.
      
      Introduces NetworkStatsHistory structure which contains sparse, uniform
      buckets of data usage defined by timestamps.  Service periodically
      polls NetworkStats and records changes into buckets.  It only persists
      to disk when substantial changes have occured.  Current parameters
      create 4 buckets each day, and persist for 90 days, resulting in about
      8kB of data per network.
      
      Only records stats for "well known" network interfaces that have been
      claimed by Telephony or Wi-Fi subsystems.  Historical stats are also
      keyed off identity (such as IMSI) to support SIM swapping.
      
      Change-Id: Ia27d1289556a2bf9545fbc4f3b789425a01be53a
      75279904
  26. 12 May, 2011 1 commit
  27. 15 Apr, 2011 1 commit
    • Bjorn Bringert's avatar
      Add Java API for writing TTS engines · 50e657bb
      Bjorn Bringert authored
      This removes the old non-public C++ API for TTS
      engines and replaces it with a Java API.
      
      The new API is still @hidden, until it has been approved.
      
      Bug: 4148636
      Change-Id: I7614ff788e11f897e87052f684f1b4938d539fb7
      50e657bb
  28. 11 Mar, 2011 1 commit
  29. 01 Mar, 2011 1 commit
  30. 23 Feb, 2011 1 commit
  31. 20 Jan, 2011 1 commit
  32. 09 Dec, 2010 1 commit
  33. 20 Nov, 2010 1 commit
  34. 04 Nov, 2010 1 commit
  35. 18 Oct, 2010 1 commit
    • Nick Pelly's avatar
      Cleanspec to fix incremental build failures of the form: · 31bcbdaa
      Nick Pelly authored
      
      out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/core/java/com/trustdlogic/trustednfc/android/ILlcpConnectionlessSocket.java:74:
      cannot find symbol
      symbol  : class LlcpPacket
      location: package com.trustedlogic.trustednfc.android.com.trustedlogic.trustednfc.android.LlcpPacket _result = this.receiveFrom(_arg0);
      
      Change-Id: I344c3b882265049cbc11dd5433535376eaadd855
      Signed-off-by: default avatarNick Pelly <npelly@google.com>
      31bcbdaa
  36. 15 Oct, 2010 1 commit
    • Nick Pelly's avatar
      NFC API revision round 2. · f36c6db1
      Nick Pelly authored
      
      - Add the second half of the new NFC API: NfcAdapter, Tag, NdefTag,
        RawTagConnection, NdefTagConnection.
      - Add implementations for all of the new NFC API.
      
      Change-Id: I8da9fd1d2971ed2c8b76f2a93f207fa9e305b0f6
      Signed-off-by: default avatarNick Pelly <npelly@google.com>
      
      Conflicts:
      
      	Android.mk
      	CleanSpec.mk
      	core/java/android/app/ContextImpl.java
      f36c6db1
  37. 13 Oct, 2010 1 commit
    • Nick Pelly's avatar
      NFC API revision round 2. · 590b73bc
      Nick Pelly authored
      
      - Add the second half of the new NFC API: NfcAdapter, Tag, NdefTag,
        RawTagConnection, NdefTagConnection.
      - Add implementations for all of the new NFC API.
      
      Change-Id: I8da9fd1d2971ed2c8b76f2a93f207fa9e305b0f6
      Signed-off-by: default avatarNick Pelly <npelly@google.com>
      590b73bc
  38. 08 Sep, 2010 1 commit