diff --git a/AndroidManifest.xml b/AndroidManifest.xml index f53e49f..7919edf 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -13,6 +13,7 @@ + \ No newline at end of file diff --git a/src/com/onirica/carrousel/Results.java b/src/com/onirica/carrousel/Results.java new file mode 100644 index 0000000..c4be4d1 --- /dev/null +++ b/src/com/onirica/carrousel/Results.java @@ -0,0 +1,15 @@ +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; + } + +}