Skip to content

Instantly share code, notes, and snippets.

@wmbest2
Created November 25, 2010 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wmbest2/715488 to your computer and use it in GitHub Desktop.
Save wmbest2/715488 to your computer and use it in GitHub Desktop.
package com.wmbest.pivotal;
import android.app.IntentService;
import android.content.Intent;
public class PivotalIntentService extends IntentService {
public void onHandleIntent(Intent aIntent) {
switch(aIntent.getAction()) {
default:
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment