blob: 6d52e44fdb5109a40279e176a26e9cea711e7cee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package se.leap.leapclient;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class ProviderAPI extends Service {
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub
return null;
}
}
|