Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.pm.ApplicationInfo;

public class Main {

    public static boolean filterApp(ApplicationInfo info) {

        if ((info.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0)
            return true;
        else if ((info.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
            return true;
        }
        return false;
    }
}