Hi,

I have two .apk file (wit their respective activity). I want to launch
the second one from the first one. How can I do this?

Just to be clear :
I have project1.apk and project2.apk.
act1 belongs to project1.apk and act2 to project2.apk.

I would have done
[in the code of act1]

Intent intent = new Intent();
intent.setClass(this, act2.class);
startActivity(intent);

if it was in the same apk but it is not working here. Could you
explain to me the best way to do this ?

Thanks,

D.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to