Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
// Licensed under the Apache License, Version 2.0

import android.content.Intent;

public class Main {
    public static Intent getPrivacySettingsLaunchIntent() {
        return new Intent("android.settings.PRIVACY_SETTINGS"); // android.provider.Settings.ACTION_PRIVACY_SETTINGS Since API level 5
    }
}