Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / other / Service / root / src / app_package / Service.java.ftl
blob571d2b8bebdfdadb9709157a7b5e92b4105569bb
1 package ${packageName};
3 import android.app.Service;
4 import android.content.Intent;
5 import android.os.IBinder;
7 public class ${className} extends Service {
8     public ${className}() {
9     }
11     @Override
12     public IBinder onBind(Intent intent) {
13         // TODO: Return the communication channel to the service.
14         throw new UnsupportedOperationException("Not yet implemented");
15     }