Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.net.Uri;

public class Main {
    /**
     * @param uri The Uri to check.
     * @return Whether the Uri authority is OneDriveStorageProvider.
     */
    private static boolean isOneDriveStorageDocument(Uri uri) {
        return "com.microsoft.skydrive.content.external".equals(uri.getAuthority());
    }
}