Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.util.Size;

public class Main {
    /**
     * Validate if a size is less than 1080p. Some devices
     * can't handle recording above that resolution.
     */
    public static boolean verifyVideoSize(Size option) {
        return (option.getWidth() <= 1080);
    }
}