package com.admedia.utils;

public class Messages  {

	public static final String PERMISSION_DENIED = 
				"Permssion couldn't be granted. Either the user has cancelled the permission" + 
                "request or you didn't include the necessary permissions in your AndroidManifest.xml file.";

    public static final String NO_OUTPUT_FOLDER = 
					"No output folder specified in the request parameters.";

	public static final String BRIGHTNESS_INVALID_INDEX = 
					"Brightness index should be between 0 and 255 inclusive.";

	public static final String FILE_INACCESSIBLE = 
					"No valid file is selected. Please check whether the the required permission is granted" +
                                    "for the selected file.";
    public static final String PICKER_CANCELLED = "User has cancelled the file picker";

    	 
}

