16 lines
297 B
Java
16 lines
297 B
Java
package com.android.sampleplugin;
|
|
|
|
import android.app.Service;
|
|
import android.content.Intent;
|
|
import android.os.IBinder;
|
|
|
|
public class SamplePlugin extends Service {
|
|
|
|
@Override
|
|
public IBinder onBind(Intent intent) {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
}
|