1. 26 Jun, 2015 1 commit
  2. 06 Feb, 2015 1 commit
  3. 16 Jan, 2015 1 commit
  4. 13 Jan, 2015 1 commit
  5. 05 Jan, 2015 1 commit
  6. 23 Dec, 2014 1 commit
  7. 17 Dec, 2014 2 commits
    • Geoff Mendal's avatar
      Import translations. DO NOT MERGE · e4860130
      Geoff Mendal authored
      Change-Id: I094ee88e9030cb02c8bb696e25fe5d4dc03f6ad5
      Auto-generated-cl: translation import
      e4860130
    • Legler Wu's avatar
      Stk App bug fix and code refine. · aeefef59
      Legler Wu authored
      Major changes:
      
      1. StkAppService.java :
      line272~279: use getInstance(slotId)@CatService to get instance of cat service instead.
      line303~307: remove redundant codes
      line457~485: remove redundant codes
      line693~695: fix the NPE if the first proactive command is not SET_UP_MENU.
      line1109~1116: remove redundant codes.
      
      2. StkMain.java (new file, is the launcher of Stk without UI(No_Display theme) :
      To fix a short flash problem when entering Stk app for one SIM inserted case.
      If inserted one SIM, it starts StkMenuActivity for showing main menu of the SIM.
      If inserted two SIMs, it starts StkLauncherActivity which shows a list for inserted SIMs.
      
      Bug: 18705342
      Change-Id: If777f1cc0a16df38d1b534cd60ed7850b6072b22
      aeefef59
  8. 10 Dec, 2014 1 commit
  9. 08 Dec, 2014 3 commits
  10. 04 Dec, 2014 1 commit
  11. 03 Dec, 2014 1 commit
  12. 02 Dec, 2014 1 commit
  13. 01 Dec, 2014 2 commits
    • Preeti Ahuja's avatar
      Add support for idle screen notification · 560be369
      Preeti Ahuja authored
      When the device is not in an interactive state or
      when the screen off intent is received from the framework,
      we can assume that the screen is idle.
      
      Add support for idle screen available set up event list
      and event download.
      
      Handle normal priority and high priority display text
      correctly.
      
      Launch the Idle Mode Text when the idle screen notification
      is received.
      
      Bug: 18274506
      Change-Id: Iff69fd8f998746a0fe37577b2bb63086478ef448
      560be369
    • Preeti Ahuja's avatar
      Stk: Handle Null Alpha Identifer for Setup Call · dd240105
      Preeti Ahuja authored
      - Per specification 102223 section 6.4.13:
        If the first alpha identifier is not provided by the UICC
        or is a null data object (ie. length is zero and has no
        value part) , the default setup call message is sent.
      
      Bug: 17646476
      Change-Id: Ic978b262b41e8bd811fb87c2194830942594d5c8
      dd240105
  14. 21 Nov, 2014 1 commit
    • Preeti Ahuja's avatar
      STK: Remove dependency on idle screen notification · b3d0e61b
      Preeti Ahuja authored
      1. Remove support for Idle Screen available set up
      event list and event download.
      2. Remove dependency of Set Up Idle Mode Text from
      idle screen notification.
      3. Remove dependency of Display Text command from
      idle screen notification.
      
      Bug: 17553408
      Change-Id: I2c46a3b2cbb7fb029518ffa738379447de64e373
      b3d0e61b
  15. 18 Nov, 2014 6 commits
    • Preeti Ahuja's avatar
      Stk: These changes are related to DISPLAY Text pro cmd · 414bc414
      Preeti Ahuja authored
      1. Handle high priority and normal priority display text
      command correctly.
      
      2. For display text with immediate response, send the terminal
      response immediately after showing the text dialog. Block all
      responses from StkDialogActivity, if display text is
      with immediate response. Remove the check for response needed
      in StkAppService, since un wanted responses are already
      blocked in StkDialogActivity.
      
      3. While the text is being displayed if a next Proactive command is
      received, it should be acted upon immediately.
      
      Bug: 17553408
      Change-Id: I8dd74e0fb1434b0753cedfea2f2fcc1ba2f18067
      414bc414
    • Preeti Ahuja's avatar
      Stk: Timer Related Fixes · 03be6676
      Preeti Ahuja authored
      Stk: Timer not getting cancelled after user response
      
      After user response, the timer should be cancelled.
      Else the timer would expire and sends an untimely
      Terminal response with RES_ID_TIMEOUT.
      
      Stk: StkDialog activity should not cancel timer when it is paused
      
      During display text,  if any higher / lower priority events
      such as incoming call, new sms, screen off intent,
      notification alerts, user actions such as 'User moving to
      another activtiy' etc.. occur during Display Text ongoing session,
      this activity would receive 'onPause()' evt resulting in
      cancellation of the timer. As a result no terminal response is
      sent to the card
      
      Stk: StkMenu/StkInput activity should not cancel timer when paused
      
      During SelectItem / GetInkey / GetInput, if any
      higher / lower priority events such as incoming call,
      new sms, screen off intent,notification alerts,
      user actions such as 'User moving to another activtiy' etc..
      occur during SELECT ITEM / GETINKEY / GETINPUT ongoing session
      respectively, the respective activity would receive
      'onPause()' evt resulting in cancellation of the timer.
      As a result no terminal response is sent to the card
      
      Bug: 17553408
      Change-Id: I0a214c037c3a53f65484104bb819c91bbea7fddd
      03be6676
    • Amit Mahajan's avatar
    • xinhe's avatar
    • Preeti Ahuja's avatar
      Stk: Usat Phase 2 feature support · 9591934f
      Preeti Ahuja authored
      This change combines the following fixes:
      
      1) Usat Phase 2 feature support
      Added changes to support Idle screen, Language Selection.
      Fix Display Alpha for proactive commands
      
      2) Fix to display dialog for DISPLAY_TEXT commands
      For Display Text commands that are low priority, we check the
      Idle Screen status before displaying the dialog. However, the handling
      for the result of the Idle Screen request is missing. Add this handling.
      
      3) Fix crash on Idle Mode Text proactive command
      After checking for screen status, use the saved command object
      to process the Idle Mode Text command.
      
      4) Stk: Update Manifest for modified Idle Screen Intent
      Update StkCmdReceiver's intent-filter to use the updated idle
      screen intent name
      
      5) Stk: General Enhancements to StkAppService
      i) Support GET_CHANNEL_STATUS command
      ii)Set mMainCmd to null (SET_UP_MENU) only when we
         receive a remove menu command
      iii)Cleanup idlemode text code: Removed the intent extra
          SCREEN_STATUS_REQUEST which is no longer used (introduced
          in the change (3) above).
      
      6) Handle LOCALE event properly
      
      Bug: 17553408
      Change-Id: Ie9a52f62bb520650eec68e3209fab1dd6343fe1c
      9591934f
    • xinhe's avatar
      Crash in Phone observed while launching SIM Toolkit app · 5b756584
      xinhe authored
      This APP should not be available for secondary user
      
      Bug:18224707
      Change-Id: Iaa4201751ae181820398625188efd6ae87f4317a
      5b756584
  16. 14 Nov, 2014 1 commit
    • Preeti Ahuja's avatar
      STK: CC feature implementation · 0f4cf2fb
      Preeti Ahuja authored
      Handle ALPHA_NOTIFY and display a toast mesage to user.
      
      Bug: 17646476
      Change-Id: I44726cb4d124be4c088660faf9fe5bc8322ccea0
      0f4cf2fb
  17. 20 Oct, 2014 2 commits
  18. 19 Oct, 2014 3 commits
  19. 01 Oct, 2014 3 commits
  20. 30 Sep, 2014 2 commits
  21. 29 Sep, 2014 1 commit
  22. 25 Sep, 2014 3 commits
  23. 16 Sep, 2014 1 commit