All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yy.httpproxy.service.BootBroadcastReceiver Maven / Gradle / Ivy

package com.yy.httpproxy.service;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

import com.yy.httpproxy.util.Log;

/**
 * Created by Administrator on 2015/12/31.
 */
public class BootBroadcastReceiver extends BroadcastReceiver {
    private static String TAG = "MyBootBroadcastReceiver";

    @Override
    public void onReceive(Context context, Intent intent) {
        Log.i(TAG, "BOOT_COMPLETED start ConnectService");
        Intent service = new Intent(context, ConnectionService.class);
        context.startService(service);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy