+ 4
How to debug errors in aide application
I don't know
3 Answers
+ 5
In simple I don't have any idea how log reports works in AIDE as prior to Android studio.
But the trick is pretty different,
You have to use exception handling using try catch. And write the exception results in the separate file. Or simply use Toast.
try{
String arr[] =new String [9];
String x=arr[10];
}catch(Exception e){
String error=e.toString();
//write error to the files or use Toast to display error
}
+ 3
I got it đđ
0
Hi