Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.support.v4.media.session.PlaybackStateCompat;

import java.io.File;

public class Main {
    public static boolean fileSizeExceedCheck(File file, long j) {
        return file.length() / PlaybackStateCompat.ACTION_PLAY_FROM_MEDIA_ID < j;
    }
}