Here you can find the source of isMobilityInstalled(Context context)
Parameter | Description |
---|---|
context | a parameter |
public static boolean isMobilityInstalled(Context context)
//package com.java2s; import android.content.Context; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; public class Main { /**/*from w ww. jav a 2 s. c o m*/ * Returns true if mobility and accelservice are installed * * @param context * @return */ public static boolean isMobilityInstalled(Context context) { return getMobilityPackageInfo(context) != null; } /** * Returns the mobility package info if mobiliy and accelservice exist * * @param context * @return the mobility package info */ private static PackageInfo getMobilityPackageInfo(Context context) { try { PackageManager pm = context.getPackageManager(); return pm.getPackageInfo("org.ohmage.mobility", 0); } catch (PackageManager.NameNotFoundException e) { // Don't do anything } return null; } }