History log of /packages/apps/Stk/src/com/android/stk/StkAppService.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
d8e2ecdca2d1bc91f48cea59e96aa5b0b452e8a7 21-Apr-2012 Alex Yakavenka <ayakav@codeaurora.org> Stk: Fix crash due to race condition

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)
/packages/apps/Stk/src/com/android/stk/StkAppService.java
8d3d017c09a4bf8e7d9c8bbdd7844e3a5e568dc0 05-Jan-2012 Kazuhiro Ondo <kazuhiro.ondo@motorola.com> am 764167cd: Add support of dislaying Alpha tag for BIP commands

* commit '764167cd0542a766cafce2f30c7aba1cf9d4ea20':
Add support of dislaying Alpha tag for BIP commands
764167cd0542a766cafce2f30c7aba1cf9d4ea20 21-Oct-2011 Kazuhiro Ondo <kazuhiro.ondo@motorola.com> Add support of dislaying Alpha tag for BIP commands

Display dialogs when BIP related proactive commands are received.
"Open Channel" command will requre user input and a response will
be sent to Cat Service.

"Close Channel", "Send Data" and "Receive Data" command will
just show an alart dialog to notify the event to the user.

Bug:5165510
Change-Id: I350bdc7dfee2947cc0a4c7771ab4972e768c6ff9
/packages/apps/Stk/src/com/android/stk/StkAppService.java
468ac247534b1e4681a0a1f11fbbcdca25b84e7e 22-Nov-2011 dujin.cha <dujin.cha@samsung.com> am 2a0eb2ac: Update STK application

* commit '2a0eb2acdc369734e1264c8d8f9955d704508b53':
Update STK application
2a0eb2acdc369734e1264c8d8f9955d704508b53 11-Nov-2011 dujin.cha <dujin.cha@samsung.com> Update STK application

1. Add checking for 'https://' url in LaunchBrowser()
2. Add 'Removing idle mode text' in launchIdleText()
-the Idle text should be deleted while processing 'refresh'

Bug : 5602742
Change-Id: Ifc374966a3fa91af0750dddfc6a8d713fd93bc45
Signed-off-by: dujin.cha <dujin.cha@samsung.com>
/packages/apps/Stk/src/com/android/stk/StkAppService.java
277aa756946e032ac721b07b01e386ccfd24f7ae 03-Nov-2011 Jake Hamby <jhamby@google.com> resolved conflicts for merge of 11320079 to master

Change-Id: I64040d0fdc13e2510bc97ae47b8b3089e2e9339d
11320079f69879ffcf5881f83382ae03449aea73 03-Nov-2011 Jake Hamby <jhamby@google.com> resolved conflicts for merge of 486c1d0d to ics-mr1

Change-Id: I77a36bfbe444f5fcc926113c65baa5cfdd982f79
486c1d0da1a50afdda7264e338145a331ba172bb 02-Nov-2011 dujin.cha <dujin.cha@samsung.com> STK: Fix ActivityNotFoundException in 'launch browser' cmd.

Fix ActivityNotFoundException while handling 'launch browser' STK command.
If URL does not start with 'http://', it causes FATAL EXCEPTION.

Bug: 5559107
Change-Id: I5af43eb4d584412e294f3789f60513de22a7b043
Signed-off-by: dujin.cha <dujin.cha@samsung.com>
/packages/apps/Stk/src/com/android/stk/StkAppService.java
0662a40ec0089736ca5fe31d0e97a597e1b2f62b 02-Nov-2011 Wink Saville <wink@google.com> am dfd14622: am 046db4be: Fix NPE in STK application.

* commit 'dfd14622fab3463c3c62e0d402a3a4251feeee3e':
Fix NPE in STK application.
dfd14622fab3463c3c62e0d402a3a4251feeee3e 02-Nov-2011 Wink Saville <wink@google.com> am 046db4be: Fix NPE in STK application.

* commit '046db4bee9c4be21c61cc0d1b46ef46f21e315d8':
Fix NPE in STK application.
046db4bee9c4be21c61cc0d1b46ef46f21e315d8 02-Nov-2011 Wink Saville <wink@google.com> Fix NPE in STK application.

Fix NullPointerException while handling "refresh" command.

Bug: 5451736
Change-Id: I10f8382527193d5240715559d97ef6c06ceb1672
/packages/apps/Stk/src/com/android/stk/StkAppService.java
885adf34b162728a8c9c04fc16abb6b5fba04395 21-Oct-2011 David Brown <dab@google.com> DO NOT MERGE. Fix crash in STK app when launching browser

The problem was that StkAppService.launchBrowser() was calling

intent.setClassName("com.android.browser",
"com.android.browser.BrowserActivity");

when launching the browser. But in ICS, the browser that's actually
installed is from the package com.google.android.browser, not
com.android.browser. So right now, the STK crashes if it ever tries to
view a web page.

The fix is for the STK app to just not hardcode the browser package/class
name at all, since if you fire off a VIEW intent with an http: URI in the
data, you'll get whatever the default browser is. Also, if the STK gets a
request with no URI at all, we bring up http://google.com/ as a default
"home page".

Bug: 5489975
Change-Id: If3f9d1468562a5e7f948156aa8395525665bc9ff
/packages/apps/Stk/src/com/android/stk/StkAppService.java
7c03cfef65a056c490a4557606436302cb0bb385 21-Oct-2011 David Brown <dab@google.com> Fix crash in STK app when launching browser

The problem was that StkAppService.launchBrowser() was calling

intent.setClassName("com.android.browser",
"com.android.browser.BrowserActivity");

when launching the browser. But in ICS, the browser that's actually
installed is from the package com.google.android.browser, not
com.android.browser. So right now, the STK crashes if it ever tries to
view a web page.

The fix is for the STK app to just not hardcode the browser package/class
name at all, since if you fire off a VIEW intent with an http: URI in the
data, you'll get whatever the default browser is. Also, if the STK gets a
request with no URI at all, we bring up http://google.com/ as a default
"home page".

Bug: 5489975
Change-Id: If3f9d1468562a5e7f948156aa8395525665bc9ff
/packages/apps/Stk/src/com/android/stk/StkAppService.java
97503264db52c3bb23b436546390aba171c8e757 08-Nov-2010 Pierre Fröjd <pierre.frojd.x@sonyericsson.com> Fixing a Monkey crash in Stk.

Monkey test has reports nullpointer exception in
the RES_ID_INPUT case. Added a null check to avoid
future exceptions.

Change-Id: I489e3f389d9f37aa8f48eee399ee32ed5967b33e
/packages/apps/Stk/src/com/android/stk/StkAppService.java
d41f1d98d7bf42e9e867819593ad79f685604796 12-Jul-2010 Alex Yakavenka <ayakav@codeaurora.org> CAT: Use new Cat package from frameworks

As all stk related classes were moved to new Cat package this application
needs to use new package instead of old one.

Change-Id: I537c61318eff3677951af9639e9991425c418241
/packages/apps/Stk/src/com/android/stk/StkAppService.java
b22e7d8c245f0ed30435227cd49e57aa0b526301 15-Dec-2009 John Joseph <jnjoseph@quicinc.com> Handle the case of Alpha Identifier being null.

When Alpha string is NULL, blank screen should not be displayed
for SEND SHORT MESSAGE proactive command.

GCF Testcase UMTS SIM/USIM 27.22.4.10.1 SEND SHORT MESSAGE - SEQ 1.7
/packages/apps/Stk/src/com/android/stk/StkAppService.java
d517689fb08e95c8e5a23385b5744ae5af2e4678 30-Nov-2009 Naveen Kalla <nkalla@quicinc.com> Send OK in terminal response if command specifies user response is not needed.

GCF Testcase GCF-PTCRB SAT/USAT 27.22.4.1.1seq1.5 expects OK if the command
qualifier specifies no user response is required. Send OK instead of
NO_RESPONSE_FROM_USER when userClear field is set to false.
/packages/apps/Stk/src/com/android/stk/StkAppService.java
62acae4b3214cdfe7e959d3a639abb8994918591 08-Oct-2009 John Wang <johnwang@google.com> Handle null intent in StkAppService.

Bug 2151421. The onStart() may be passed a null intent if a service is restarted and it need handle the null intent for now.
/packages/apps/Stk/src/com/android/stk/StkAppService.java
79085fcc5b4e54cc374e8720644ce4c1dc0004be 09-Jun-2009 Wink Saville <wink@google.com> Cleanup whitespace.
/packages/apps/Stk/src/com/android/stk/StkAppService.java
36eddd5bfa9047a6b9de2be4a5d6636b81634f97 29-May-2009 Wink Saville <wink@google.com> Update comment in onCreate.
/packages/apps/Stk/src/com/android/stk/StkAppService.java
56469d57db5e34913ec2ad1d28440ddfad9363a0 02-Apr-2009 Wink Saville <> AI 144185: Integrate cdma into the main code base.

Automated import of CL 144185
/packages/apps/Stk/src/com/android/stk/StkAppService.java
9d9730aecb72e830ef12d66ce6e084d8ae0928f2 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
/packages/apps/Stk/src/com/android/stk/StkAppService.java
4f140d1b04066e68d8236a41765ad06029e00105 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
/packages/apps/Stk/src/com/android/stk/StkAppService.java
8a6da81b265c51d38a78557f3b05e11119d4f957 19-Feb-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@132276
/packages/apps/Stk/src/com/android/stk/StkAppService.java
2575de4c1b741eccab14ddf291cd91e9f4d36605 16-Jan-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@126645
/packages/apps/Stk/src/com/android/stk/StkAppService.java
28aadc2864433ec393fc93d46d9eba461f66ce89 10-Jan-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@125939
/packages/apps/Stk/src/com/android/stk/StkAppService.java
c46d8a06f810a3b5b570e43e7e0ed8b36efd23e5 18-Dec-2008 The Android Open Source Project <initial-contribution@android.com> Code drop from //branches/cupcake/...@124589
/packages/apps/Stk/src/com/android/stk/StkAppService.java