/** * galaxy inc. * meetup client for android */ package com.galaxy.picasa.sync; import android.app.Service; import android.content.Intent; import android.os.IBinder; /** * * @author sihai * */ public class PicasaSyncService extends Service { @Override public IBinder onBind(Intent arg0) { // TODO Auto-generated method stub return null; } }