I've built a shared library named com.example.multiplecontacts
. This library contains one activity named MultipleContacts
. I'd like to use it in another application named com.example.test
I've added the following line to the Test Manifest
<uses-library android:name="com.example.multiplecontacts" android:required="true"/>
But the following error appears
Package com.example.test requires unavailable shared library com.example.multiplecontacts; failing!
I've checked Is Library checkbox in my library and added it as a reference to my application through Properties->Android->Add
What else should I do?