I am trying to root my sons Note 2 and I am not sure of what the newest root method is...or for that matter, which method still works! I have been searching on here and youtube and I don't know which is the correct method...The Note is fully updated to 4.4.2.
Affichage des articles dont le libellé est point. Afficher tous les articles
Affichage des articles dont le libellé est point. Afficher tous les articles
dimanche 21 décembre 2014
jeudi 18 décembre 2014
[Q] No Google Now, any point in getting this watch? topic
Hi All
I like in a Country that doesn't have Google Now, Location services etc enabled. Is there any point in me getting this watch? Will it work without Google Now? Obviously, it won't provide contextually aware notifications, but everything else should function fine right?
Thanks, Bob
I like in a Country that doesn't have Google Now, Location services etc enabled. Is there any point in me getting this watch? Will it work without Google Now? Obviously, it won't provide contextually aware notifications, but everything else should function fine right?
Thanks, Bob
By:
dd
On 22:36
vendredi 12 décembre 2014
[Q] How to Communicate with Virtual Comm Port using usb cable with Single end point topic
Hi,
This is Lakshmansundeep. I am developing an application that sends the data android device to micro controller as vice versa via VIRTUAL COMM PORT using usb cable. I did my usb connection establishment successfully,coming to the communication part i.e. Communication from Android Device to micro controller and the application was crashed because of having single end point to the virtual comm port.please help me how to communicate to virtual comm port having single end point...please it was a little bit urgent.
Here is my Android Activity java code after my method called:
public boolean Check_Devices_Available()
{
int i,j;
boolean Device_Found;
String as[];
UsbEndpoint tOut = null;
UsbEndpoint tIn = null;
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
HashMap<String, UsbDevice> deviceList = manager.getDeviceList();
i = deviceList.size();
if(i==0)
{
Toast.makeText(Loginpage.this,"No Devices Attached",Toast.LENGTH_LONG).show();
return false;
}
as = new String[i];
deviceList.keySet().toArray(as);
Device_Found=false;
for(j=0;j<i;j++)
{
device_details = (UsbDevice)deviceList.get(as[j]);
if((device_details.getVendorId()==targetVendorID) && (device_details.getProductId()==targetProductID))
{
Toast.makeText(Loginpage.this,"Device Connected",Toast.LENGTH_LONG).show();
Device_Found=true;
break;
}
}
if(Device_Found==false)
{
Toast.makeText(Loginpage.this,"No Devices Attached with Req Vendor ID",Toast.LENGTH_LONG).show();
return false;
}
if(manager.hasPermission(device_details)==true)
{
Toast.makeText(Loginpage.this, "Permission Granted", Toast.LENGTH_LONG).show();
// Device_Settings(Device_Detials,j);
}
else
{
//PendingIntent intent = null;
Toast.makeText(Loginpage.this, "No Permission", Toast.LENGTH_LONG).show();
manager.requestPermission(device_details, null);
}
UsbEndpoint Device_End_Point = null;
UsbInterface usbinterface = device_details.getInterface(j);
if (usbinterface == null)
{
Toast.makeText(Loginpage.this, "Device Found But UnKnown Exception-1", 50000).show();
return false;
}
Device_End_Point=usbinterface.getEndpoint(j);
Toast.makeText(Loginpage.this, ""+Device_End_Point, 50000).show();
tIn=tOut=Device_End_Point;
if(Device_End_Point==null)
{
Toast.makeText(Loginpage.this, "End Point Error ", 50000).show();
return false;
}
UsbDeviceConnection Device_Connection=null;
if(device_details!=null)
{
Device_Connection=manager.openDevice(device_detail s);
if (Device_Connection != null )
{
Toast.makeText(Loginpage.this, "Checking", Toast.LENGTH_LONG).show();
Device_Connection.controlTransfer(0x21, 34, 0, 0, null, 0, 0);
Device_Connection.controlTransfer(0x21, 32, 0, 0, new byte[] { (byte) 0x80, 0x25, 0x00, 0x00, 0x00, 0x00, 0x08 }, 7, 0);
byte []Communication_Byte=new byte[1];
Communication_Byte[0]='&';
selectedendpoint = listusbendpoint.getType();
Toast.makeText(Loginpage.this,""+selectedendpoint, Toast.LENGTH_LONG).show();
//usbDeviceConnection.bulkTransfer(tOut,Communicatio n_Byte, 1, 0);
}
if(Device_Connection==null)
{
Toast.makeText(Loginpage.this, "Unable to open device", 50000).show();
return false;
}
}
return true;
}
Thank you in advance
This is Lakshmansundeep. I am developing an application that sends the data android device to micro controller as vice versa via VIRTUAL COMM PORT using usb cable. I did my usb connection establishment successfully,coming to the communication part i.e. Communication from Android Device to micro controller and the application was crashed because of having single end point to the virtual comm port.please help me how to communicate to virtual comm port having single end point...please it was a little bit urgent.
Here is my Android Activity java code after my method called:
public boolean Check_Devices_Available()
{
int i,j;
boolean Device_Found;
String as[];
UsbEndpoint tOut = null;
UsbEndpoint tIn = null;
UsbManager manager = (UsbManager) getSystemService(Context.USB_SERVICE);
HashMap<String, UsbDevice> deviceList = manager.getDeviceList();
i = deviceList.size();
if(i==0)
{
Toast.makeText(Loginpage.this,"No Devices Attached",Toast.LENGTH_LONG).show();
return false;
}
as = new String[i];
deviceList.keySet().toArray(as);
Device_Found=false;
for(j=0;j<i;j++)
{
device_details = (UsbDevice)deviceList.get(as[j]);
if((device_details.getVendorId()==targetVendorID) && (device_details.getProductId()==targetProductID))
{
Toast.makeText(Loginpage.this,"Device Connected",Toast.LENGTH_LONG).show();
Device_Found=true;
break;
}
}
if(Device_Found==false)
{
Toast.makeText(Loginpage.this,"No Devices Attached with Req Vendor ID",Toast.LENGTH_LONG).show();
return false;
}
if(manager.hasPermission(device_details)==true)
{
Toast.makeText(Loginpage.this, "Permission Granted", Toast.LENGTH_LONG).show();
// Device_Settings(Device_Detials,j);
}
else
{
//PendingIntent intent = null;
Toast.makeText(Loginpage.this, "No Permission", Toast.LENGTH_LONG).show();
manager.requestPermission(device_details, null);
}
UsbEndpoint Device_End_Point = null;
UsbInterface usbinterface = device_details.getInterface(j);
if (usbinterface == null)
{
Toast.makeText(Loginpage.this, "Device Found But UnKnown Exception-1", 50000).show();
return false;
}
Device_End_Point=usbinterface.getEndpoint(j);
Toast.makeText(Loginpage.this, ""+Device_End_Point, 50000).show();
tIn=tOut=Device_End_Point;
if(Device_End_Point==null)
{
Toast.makeText(Loginpage.this, "End Point Error ", 50000).show();
return false;
}
UsbDeviceConnection Device_Connection=null;
if(device_details!=null)
{
Device_Connection=manager.openDevice(device_detail s);
if (Device_Connection != null )
{
Toast.makeText(Loginpage.this, "Checking", Toast.LENGTH_LONG).show();
Device_Connection.controlTransfer(0x21, 34, 0, 0, null, 0, 0);
Device_Connection.controlTransfer(0x21, 32, 0, 0, new byte[] { (byte) 0x80, 0x25, 0x00, 0x00, 0x00, 0x00, 0x08 }, 7, 0);
byte []Communication_Byte=new byte[1];
Communication_Byte[0]='&';
selectedendpoint = listusbendpoint.getType();
Toast.makeText(Loginpage.this,""+selectedendpoint, Toast.LENGTH_LONG).show();
//usbDeviceConnection.bulkTransfer(tOut,Communicatio n_Byte, 1, 0);
}
if(Device_Connection==null)
{
Toast.makeText(Loginpage.this, "Unable to open device", 50000).show();
return false;
}
}
return true;
}
Thank you in advance
By:
dd
On 22:45
BRICKED 7inch Irola Tablet...PLEASE HELP point me in the right direction topic
BRICKED 7inch Irola Tablet...PLEASE HELP
I am in DIRE need of some help with my tablet. I received this irola dx752 tablet bricked and cannot fix it for the life of me. I am able to hold power and volume up and get into recovery system version 4.2.01. I Have tried a factory reset and a wipe system cache and the tablet just reboots to the green robot with and exclamation mark. If I press volume up, it brings me back to the system recovery. Now i am not very versed in ADB but I tried to sideload just about every firmware I could find for an a13 allwinner a8 cortex 7inch tablet, since the irola website has taken down its firmware. Also, fastboot will not work on this tablet whatsoever (it just says waiting for device) when i enter any command. I have never seen this tablet boot into a rom of any kind and therefore cannot tell if USB Debugging was ever enabled. I also Have tried different drivers but the one that seem to hold is the Android ADB Interface. CAN ANYONE PLEASE GIVE ME SOME SUGGESTIONS OR SOME HELP? It would be greatly appreciated. Thank you.
I am in DIRE need of some help with my tablet. I received this irola dx752 tablet bricked and cannot fix it for the life of me. I am able to hold power and volume up and get into recovery system version 4.2.01. I Have tried a factory reset and a wipe system cache and the tablet just reboots to the green robot with and exclamation mark. If I press volume up, it brings me back to the system recovery. Now i am not very versed in ADB but I tried to sideload just about every firmware I could find for an a13 allwinner a8 cortex 7inch tablet, since the irola website has taken down its firmware. Also, fastboot will not work on this tablet whatsoever (it just says waiting for device) when i enter any command. I have never seen this tablet boot into a rom of any kind and therefore cannot tell if USB Debugging was ever enabled. I also Have tried different drivers but the one that seem to hold is the Android ADB Interface. CAN ANYONE PLEASE GIVE ME SOME SUGGESTIONS OR SOME HELP? It would be greatly appreciated. Thank you.
By:
dd
On 04:26
Inscription à :
Articles (Atom)
