import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log;
public class MyVpnService extends VpnService {
@Nullable @Override public IBinder onBind(Intent intent) { return new LocalBinder(); }