Created
November 25, 2010 14:48
-
-
Save wmbest2/715488 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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