Answer the question
In order to leave comments, you need to log in
How to debug an android application in Eclipse?
Hello everybody. Need help: I can't debug an android application: step-by-step tracing continues until it meets Java classes in the source code, namely in the following piece of code
try{
Log.d(LOG, "opening testTask.json");
//в следующей строке получаю сообщение "Source not found"
InputStreamReader istream = new InputStreamReader(aMngr.open("testTask.json"));
BufferedReader br = new BufferedReader(istream);
String line;
while((line=br.readLine()) != null){
sb.append(line);
}
Log.d(LOG, "After read file");
br.close();
try{....
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question