Aucune description

RNFetchBlobConst.java 812B

123456789101112131415161718192021
  1. package com.RNFetchBlob;
  2. import okhttp3.MediaType;
  3. /**
  4. * Created by wkh237 on 2016/7/11.
  5. */
  6. public class RNFetchBlobConst {
  7. public static final String EVENT_UPLOAD_PROGRESS = "RNFetchBlobProgress-upload";
  8. public static final String EVENT_PROGRESS = "RNFetchBlobProgress";
  9. public static final String EVENT_HTTP_STATE = "RNFetchBlobState";
  10. public static final String FILE_PREFIX = "RNFetchBlob-file://";
  11. public static final String FILE_PREFIX_BUNDLE_ASSET = "bundle-assets://";
  12. public static final String FILE_PREFIX_CONTENT = "content://";
  13. public static final String DATA_ENCODE_URI = "uri";
  14. public static final String RNFB_RESPONSE_BASE64 = "base64";
  15. public static final String RNFB_RESPONSE_UTF8 = "utf8";
  16. public static final String RNFB_RESPONSE_PATH = "path";
  17. }