I have one android project in which I have included 3 other android library project and I am using eclipse. I have tried to print log from the library project, but it only prints the log of the main project only.
So can any body tell me how to print the log of library project which is included in the main project?
My main project is com.project1.app
, in which I logged as below.
Log.i(TAG,"Log From Main Project1");
Library project is com.subLibrary.subLibraryapp
, in which I logged as below.
Log.i(TAG,"Log From Main Library Project");
But in LogCat I am able to see log only from com.project1.app
shown as below.
com.project1.app | Log From Main Project1
Have I done any mistake or I have to open any other window, Can anybody please suggest me?