Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.content.Context;

import android.content.pm.PackageManager;

public class Main {
    public static boolean isAntRadioServiceInstalled(Context context) {
        return isPackageInstalled(context, "com.dsi.ant.service.socket", PackageManager.GET_SERVICES);
    }

    /** 
     * @see android.content.pm.PackageManager#getPackageInfo
     * @param context
     * @param packageName
     * @param flag
     * @return
     */
    public static boolean isPackageInstalled(Context context, String packageName, int flag) {
        try {
            context.getPackageManager().getPackageInfo(packageName, flag);
            return true;
        } catch (PackageManager.NameNotFoundException e) {
            return false;
        }
    }
}