blob: 560c132bf029a8e0f5291606565d412dbd7acb3c [file] [log] [blame]
package ${packageName};
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class ${className} extends BroadcastReceiver {
public ${className}() {
}
@Override
public void onReceive(Context context, Intent intent) {
// TODO: This method is called when the BroadcastReceiver is receiving
// an Intent broadcast.
throw new UnsupportedOperationException("Not yet implemented");
}
}