Updates the upload size limit and correct it to power of two numbers of bytes as it actually always was.

This commit is contained in:
Vavassor 2017-07-26 00:12:02 -04:00
parent 2ed979d7fd
commit 42a49fbd4e
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ import retrofit2.Response;
public class ComposeActivity extends BaseActivity implements ComposeOptionsFragment.Listener, ParserUtils.ParserListener {
private static final String TAG = "ComposeActivity"; // logging tag
private static final int STATUS_CHARACTER_LIMIT = 500;
private static final int STATUS_MEDIA_SIZE_LIMIT = 4000000; // 4MB
private static final int STATUS_MEDIA_SIZE_LIMIT = 8388608; // 8MiB
private static final int MEDIA_PICK_RESULT = 1;
private static final int MEDIA_TAKE_PHOTO_RESULT = 2;
private static final int PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE = 1;