constants.dart 527 B

123456789101112
  1. const int THUMBNAIL_SMALL_SIZE = 256;
  2. const int THUMBNAIL_QUALITY = 50;
  3. const int THUMBNAIL_LARGE_SIZE = 512;
  4. const int COMPRESSED_THUMBNAIL_RESOLUTION = 1080;
  5. const int THUMBNAIL_DATA_LIMIT = 100 * 1024;
  6. const String SENTRY_DSN =
  7. "https://93b8ea6f54f442dc8408ebccdff6fe7a@errors.ente.io/2";
  8. const String SENTRY_DEBUG_DSN =
  9. "https://b31c8af8384a4ce980509b8f592a67eb@errors.ente.io/3";
  10. const String ROADMAP_URL = "https://roadmap.ente.io";
  11. const int MICRO_SECONDS_IN_DAY = 86400000000;
  12. const int ANDROID_11_SDK_INT = 30;