I have a android library project and reusable drawable resources in it.
Lets say package name is: com.vijay.mylib;
Then i have a main project and it uses the above library project.
Lets say its package name is:com.vijay.myproject
.
Consider that I have linked library project with my main project correctly.
In my main project i have a layout called main.xml.
I want to use some drawable rom library project in main.xml.
How can i do it in xml?
Refering in normal way like "@drawable/myImage" didn't work for me. The referece chooser windows shows me the drawables only from main project. Not from library project.
(Note : Both projects have different package for R.java. Does it has do anything with this?)