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;

/**
 * Created by Administrator on 2015/12/31.
 */
public class BootBroadcastReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        Intent service = new Intent(context, ConnectionService.class);
        context.startService(service);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy