[android-developers] Re: How to get manifest values?

2011-06-10 Thread Jens
AFAIK the GET_INTENT_FILTERS flag in PackageManager has never been implemented (even though it's been declared since version 1 of the API). If it's your own manifest file you want to access Dougs advice is spot on - if you want to inspect the intent-filters of other applications your SOL. On 9

[android-developers] Re: How to get manifest values?

2011-06-09 Thread Doug
On Jun 9, 5:05 am, Ashok Jeevan ashokjee...@gmail.com wrote: I need to get MIME type values from the manifest file in an Activity class. Is there any way to access values from the manifest? Maybe you could instead reference a string resource instead in both the the manifest and the code that