mirror of
https://github.com/balkian/Carrousel-Android.git
synced 2025-03-14 18:16:58 +00:00
16 lines
266 B
Java
16 lines
266 B
Java
|
package com.onirica.carrousel;
|
||
|
|
||
|
import android.app.Service;
|
||
|
import android.content.Intent;
|
||
|
import android.os.IBinder;
|
||
|
|
||
|
public class Results extends Service {
|
||
|
|
||
|
@Override
|
||
|
public IBinder onBind(Intent arg0) {
|
||
|
// TODO Auto-generated method stub
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|