[android-developers] Re: android manifest file from an unzipped apk cannot be read

2010-08-28 Thread Kumar Bibek
If the Intent or the protocol is not publicly available, then you should not try to do that. The target app can easily change in the future. Just a change of a class name would break your app. -Kumar Bibek http://kbeanie.com On Aug 26, 10:14 pm, Anil wrote: > I am looking to trap an implicit int

[android-developers] Re: android manifest file from an unzipped apk cannot be read

2010-08-26 Thread Anil
I am looking to trap an implicit intent from the launcher, do some processing, and then call the original target app directly. To call the target app, I assume it has to be via an explicit intent - otherwise my app will get called again by Android? No, I am not reusing anyone's app or parts of it -

[android-developers] Re: android manifest file from an unzipped apk cannot be read

2010-08-26 Thread Matty
Activites that are re-usable should have some published way of invoking them... Otherwise, perhaps they do something by file type, like if you start an activity for an MP3, audio players should be able to launch. Why don't you just ask the developer how to invoke an activity, instead of trying to

[android-developers] Re: android manifest file from an unzipped apk cannot be read

2010-08-26 Thread Anil
So for example, referring to the Android documentation which talks of the Travel app reusing the Activity of the Weather app, would one have to get permission to do this? N.B. I needed the info to try out a small idea - all authorised and legal. On Aug 26, 11:13 am, Chris Stratton wrote: > Shari

[android-developers] Re: android manifest file from an unzipped apk cannot be read

2010-08-26 Thread Chris Stratton
Sharing and re-using other people's code without their permission is not part of the philosophy. Generally, when someone grants permission as a practical matter they also make the source code available. With regard to the technical question, the file is in some kind of quasi unicode binary format