I have one android project in which I have included 3 other Android library projects and I am using eclipse. I tried to print the magazine from the library project, but it only prints the magazine of the main project.
So can any body tell me how to print a library project journal, which is included in the main project?
My main project is com.project1.app , which I wrote to as shown below.
Log.i(TAG,"Log From Main Project1");
The com.subLibrary.subLibraryapp library project that I registered with, as shown below.
Log.i(TAG,"Log From Main Library Project");
But in LogCat, I can only see the log with com.project1.app , as shown below.
com.project1.app | Log From Main Project1
I made a mistake or need to open any other window. Can anyone suggest me?
source share