mirror of
https://github.com/adolfintel/OpenPods.git
synced 2026-09-16 07:36:10 -04:00
Minor bug fixes; Documented PodsService
This commit is contained in:
@@ -3,10 +3,15 @@ package com.dosse.airpods;
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.util.Log;
|
||||
|
||||
/**
|
||||
* A simple starter class that starts the service when the device is booted, or after an update
|
||||
*/
|
||||
public class Starter extends BroadcastReceiver {
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
Log.d("PODS","BOOT COMPLETE!!!!!!!!");
|
||||
context.startService(new Intent(context,PodsService.class));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user