When clicking a button in my application, I want to start an activity from another package.
This is my intent:
final Intent myIntent = new Intent(getApplicationContext(), com.facebook.android.Places.class)
and this is my manifest:
<activity android:name=".com.facebook.android.Places"
> </activity>
But i am getting unable to find explicit activity com.mypackage\com.facebook.android.Places.
Is it impissible to start activity from another package?
Don’t start an Activity from another library-project:
Create your own subclass of it:
Now declare your new Activity in your Manifest: