1. 11 Mar, 2013 1 commit
  2. 05 Mar, 2013 1 commit
    • Abhishek Adappa's avatar
      Fix to launch browser to home page · 840c82f3
      Abhishek Adappa authored
      Certain STK commands don't provide a URL with which the browser
      should be launched. For those tests, launch the browser with
      the default homepage.
      
      Bug:8312291
      Change-Id: Ie9799dbe7bd73e9deeea65832af2bf58a71488d6
      840c82f3
  3. 21 Feb, 2013 2 commits
    • Wink Saville's avatar
      f32d1e94
    • Alex Khlivnuik's avatar
      Stk notifications has purple background · 50e0a1db
      Alex Khlivnuik authored
      Code was introduced in frameworks/base
      96fd7c1c1acc03b40b1813ef65793560c175ef80 that makes notifications
      refering to status_bar_latest_event_content.xml directly show up
      in purple.
      
      Using internal resource directly is discouraged, or at least the author
      bids the user of this directly to have fun with the purple background.
      The recommended way is to use the class Notification.Builder (Api 11)
      to build your notifications. This commit uses Notification.Builder
      class which setup the correct notification layout and background.
      
      Change-Id: Idd850a16b7b68a40726a21947adc58cdcdfa1183
      50e0a1db
  4. 20 Feb, 2013 2 commits
  5. 23 Jan, 2013 1 commit
  6. 10 Jan, 2013 1 commit
  7. 09 Jan, 2013 1 commit
    • Christopher.Posselwhite's avatar
      Changed timeouts for Stk · 1772c049
      Christopher.Posselwhite authored
      The SIM Toolkit interface in Android uses one common
      timeout for UI commands. This is not good practice,
      as there is a very clear difference between use cases.
      
      A DISPLAY TEXT command with the option “clear after delay”
      and with option “Wait for user to clear” should not have
      the same timeout, which is the case without a patch. The
      timeouts have in the patch been set to 15 s for
      “clear after delay” (i.e. automatically removed), 60 seconds
      for “Wait for user to clear” and 30 s for other UI timeouts.
      
      The times are both in accordance with ETSI 102.223 and
      operator requirements.
      
      Change-Id: I61262bf36a84f071ec4f223eb187f92e2026b68b
      1772c049
  8. 03 Jan, 2013 1 commit
  9. 20 Dec, 2012 2 commits
  10. 19 Dec, 2012 1 commit
    • Jeevaka Badrappan's avatar
      Stk: Fix issue in DISPLAY TEXT-Sustained text · 854a25c2
      Jeevaka Badrappan authored
      
      3GPP TS 31.124 test case 27.22.4.1.4/1 Display Text -
      sustained text is failing.
      
      As per the CAT specification, text shall
      be sustained until a subsequent proactive command
      is received containing display data. Existing
      dialog showing the text is not replaced with
      the newly received text message resulting in
      conformance case failing.
      
      waitForUserResponse not set correctly and also
      Intent.FLAG_ACTIVITY_MULTIPLE_TASK is used
      resulting in a starting of a new task even if there
      is an existing task.
      
      Fix the issue by setting the waitForUserResponse
      to false on response not needed and on screen
      not available. Also, Intent.FLAG_ACTIVITY_CLEAR_TASK
      is used as one of the flags in creating the intent
      for launching the dialog.
      
      Change-Id: Ic614f96883aaa92696982ca41d85a02341bcb132
      Author: Jeevaka Badrappan <jeevaka.badrappan@intel.com>
      Signed-off-by: default avatarJeevaka Badrappan <jeevaka.badrappan@intel.com>
      Signed-off-by: default avatarShuo Gao <shuo.gao@intel.com>
      Signed-off-by: default avatarBruce Beare <bruce.j.beare@intel.com>
      Signed-off-by: default avatarJack Ren <jack.ren@intel.com>
      Author-tracking-BZ: 61998
      854a25c2
  11. 23 Oct, 2012 1 commit
    • Banavathu, Srinivas Naik's avatar
      StkAppSerice: Stop the service when CatService Instance is null · 87cda96d
      Banavathu, Srinivas Naik authored
      ANR is seen in StkAppService because of ServiceHandler is not
      created due to CatService is not running.
      
      Stop Stkapp Service if Catservice is not running to avoid ANR.
      Whenever service is started using StartService first onCreate
      followed by onStart will be called. Next time onwards only
      Onstart will be called due to this ServiceHandler will not intialize.
      Hence moving corresponding code to onStart from onCreate.
      
      Change-Id: I5a0a78d2012e3bf5aff2b5512dd21aa7bb96ec4a
      87cda96d
  12. 28 Sep, 2012 1 commit
  13. 26 Sep, 2012 1 commit
    • Wink Saville's avatar
      Fix mVibrator initialization. · a8e4f50a
      Wink Saville authored
      getSystemService cannot be called during java#init, moving initialization
      of mVibrator into onCreate.
      
      Bug: 6886400
      Change-Id: I644aa674fffb11ea755bd6d96169e43896c839f2
      a8e4f50a
  14. 14 Sep, 2012 3 commits
  15. 13 Sep, 2012 1 commit
    • Pierre Fröjd's avatar
      No response sent when backlight is OFF · 99fccc1c
      Pierre Fröjd authored
      When the LCD backlight is OFF while receiving a
      PLAY TONE command, the onDestroy() method is called
      immediately since the app is in the background.
      In onDestroy() the STOP message is removed from the
      handler queue which leads to no response is sent back to
      StkAppService. This causes the RIL layer to send
      TR 'ME currently unable to process command' back to the SIM.
      Solution is to check if a response is sent before
      removing any messages from the handler queue.
      
      Change-Id: I7ac2e99b85b38576acfe72370aa55850cdc304a0
      99fccc1c
  16. 08 Aug, 2012 3 commits
  17. 28 Jul, 2012 1 commit
    • Alex Yakavenka's avatar
      Stk: Fix crash due to race condition · d8e2ecdc
      Alex Yakavenka authored
      StkAppService doesn't really need mStkService reference in the
      constructor. It will need it to respond to proactive command.
      By that time StkService has to exist (proactive command comes
      from it)
      d8e2ecdc
  18. 20 Jul, 2012 1 commit
  19. 17 Jul, 2012 3 commits
  20. 12 Jul, 2012 1 commit
  21. 12 Jun, 2012 1 commit
  22. 14 Apr, 2012 1 commit
  23. 13 Apr, 2012 2 commits
  24. 03 Apr, 2012 1 commit
  25. 23 Mar, 2012 1 commit
  26. 08 Mar, 2012 1 commit
  27. 10 Feb, 2012 2 commits
  28. 09 Feb, 2012 1 commit
  29. 30 Jan, 2012 1 commit