I have two packages in my android application. How to mention those different packages along with their activities in android manifest file?In my code I have given as
<manifest package="com.tabwidget">
<application>
<activity android:name=".com.tabwidget.Tab"></activity>
<activity android:name=".com.tabwidget.TabHostProvider"></activity>
<activity android:name=".com.tabwidget.TabView"></activity>
</application>
</manifest>
<manifest package="com.kpbird.tabbarcontrol">
<application>
<activity android:name=".com.kpbird.tabbarcontrol.TabbarView"></activity>
</application>
</manifest>
But I am getting exception Unable to find explicit activity class ...........Where was i wrong? Please help me...........
you can do like this . you need no to do any explicit inclusion of different package
It seems you have made a few mistakes in the XML:
What follows should work. It fixes these 3 mistakes: