android - How to read list of all apps installed on iOS -
twitter on news wanting collect list of apps installed on users ios , android.
is there recent api i'm no aware off allows them that? or scanning app url schemes registered?
piece of code bring list of activities/applications installed on android :
final intent mainintent = new intent(intent.action_main, null); mainintent.addcategory(intent.category_launcher); final list pkgappslist = context.getpackagemanager().queryintentactivities( mainintent, 0);
for more information, take look: how list of installed android applications , pick 1 run
Comments
Post a Comment