Im trying to detect if an app supports Android Wear or is a watch face.
PackageManager pm = getActivity().getPackageManager();
List<PackageInfo> packs = pm.getInstalledPackages(0);
for (int i = 0; i < packs.size(); i++)
{}
Is the code im using. Any feedback or suggestions would be awsome!