hi all, is possible to translate this java code into readeable b4a code?
thanks a lot.
B4X:
public int setUsbTethering(boolean enable)
{
final android.net.IConnectivityManager mService;
try {
return mService.setUsbTethering(enable);
}
catch (RemoteException e)
{
return 2;
}
}
}
thanks a lot.