This a my first gist note.
printf("Hello world.")
public class SDcardService extends Service { | |
@Override | |
public IBinder onBind(Intent intent) { | |
// Return the communication channel to the service. | |
throw new UnsupportedOperationException("Not yet implemented"); | |
} | |
@Override | |
public void onCreate() { | |
IntentFilter intentFilter = new IntentFilter(Intent.ACTION_MEDIA_MOUNTED); |
This a my first gist note.
printf("Hello world.")