Restructuring the sample plugin and adding more tests.

This commit is contained in:
Derek Sollenberger
2009-06-18 11:19:41 -04:00
parent 246ad9119a
commit d7ebf27ff4
16 changed files with 595 additions and 253 deletions

View File

@@ -0,0 +1,15 @@
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;
}
}