blob: 571d2b8bebdfdadb9709157a7b5e92b4105569bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package ${packageName};
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class ${className} extends Service {
public ${className}() {
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
}
}
|