ente/lib/core/constants.dart

12 lines
527 B
Dart
Raw Normal View History

2020-05-05 19:57:57 +00:00
const int THUMBNAIL_SMALL_SIZE = 256;
2021-03-01 18:42:06 +00:00
const int THUMBNAIL_QUALITY = 50;
2020-04-25 10:28:22 +00:00
const int THUMBNAIL_LARGE_SIZE = 512;
2020-11-22 18:07:40 +00:00
const int COMPRESSED_THUMBNAIL_RESOLUTION = 1080;
const int THUMBNAIL_DATA_LIMIT = 100 * 1024;
2020-05-02 16:28:54 +00:00
const String SENTRY_DSN =
2021-02-06 18:26:55 +00:00
"https://93b8ea6f54f442dc8408ebccdff6fe7a@errors.ente.io/2";
const String SENTRY_DEBUG_DSN =
"https://b31c8af8384a4ce980509b8f592a67eb@errors.ente.io/3";
2021-05-20 23:18:45 +00:00
const String ROADMAP_URL = "https://roadmap.ente.io";
const int MICRO_SECONDS_IN_DAY = 86400000000;
const int ANDROID_11_SDK_INT = 30;