Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: LGPL 

import android.content.Intent;

public class Main {
    private static void removeFlag(Intent intent, int flag) {
        intent.setFlags(intent.getFlags() & ~flag);
    }
}