Skip to content

Commit

Permalink
eclair snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Baptiste Queru committed Nov 13, 2009
1 parent 90cdbb6 commit 8b3a555
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Binary file added res/drawable-hdpi/ic_launcher_sim_toolkit.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
7 changes: 7 additions & 0 deletions src/com/android/stk/StkAppService.java
Expand Up @@ -161,7 +161,14 @@ public void onCreate() {
public void onStart(Intent intent, int startId) {
waitForLooper();

// onStart() method can be passed a null intent
// TODO: replace onStart() with onStartCommand()
if (intent == null) {
return;
}

Bundle args = intent.getExtras();

if (args == null) {
return;
}
Expand Down

0 comments on commit 8b3a555

Please sign in to comment.