CB-10756: Adding sterner warnings about DATA_URL

This closes #193
This commit is contained in:
Richard Knoll
2016-03-10 11:55:31 -08:00
parent 76c129c95e
commit 826aca3524
3 changed files with 56 additions and 50 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ module.exports = {
* @enum {number}
*/
DestinationType:{
/** Return base64 encoded string */
/** Return base64 encoded string. DATA_URL can be very memory intensive and cause app crashes or out of memory errors. Use FILE_URI or NATIVE_URI if possible */
DATA_URL: 0,
/** Return file uri (content://media/external/images/media/2 for Android) */
FILE_URI: 1,