Is there a way i can get intent filters supported by an app by using PackageManager.GET_INTENT_FILTERS option since i can't find a method that returns packageinfo instance?
List<ResolveInfo> launchables=pm.queryIntentActivityOptions(this.
getComponentName(),
new Intent[]{intent1},intent2,
PackageManager.GET_INTENT_FILTERS);
for( ResolveInfo lauchable : launchables){
ActivityInfo activity=launchable.activityInfo;
ComponentName name=new ComponentName(activity.applicationInfo.packageName,
activity.name);
IntentFilter filter = launchable.filter;
PackageInfo info = launchable.//i can't find a method that return
//PackageInfo instance in this lauchable.
}