ente/lib/core/constants.dart

20 lines
826 B
Dart
Raw Normal View History

2021-07-21 20:47:43 +00:00
const int kThumbnailSmallSize = 256;
const int kThumbnailQuality = 50;
const int kThumbnailLargeSize = 512;
const int kCompressedThumbnailResolution = 1080;
const int kThumbnailDataLimit = 100 * 1024;
const String kSentryDSN =
2021-07-22 09:30:03 +00:00
"https://2235e5c99219488ea93da34b9ac1cb68@sentry.ente.io/4";
2021-07-21 20:47:43 +00:00
const String kSentryDebugDSN =
2021-07-22 09:30:03 +00:00
"https://ca5e686dd7f149d9bf94e620564cceba@sentry.ente.io/3";
2021-07-21 20:47:43 +00:00
const String kRoadmapURL = "https://roadmap.ente.io";
const int kMicroSecondsInDay = 86400000000;
const int kAndroid11SDKINT = 30;
const int kGalleryLoadStartTime = -8000000000000000; // Wednesday, March 6, 1748
// used to identify which ente file are available in app cache
const String kSharedMediaIdentifier = 'ente-shared://';
2021-08-10 07:21:13 +00:00
const int kMaxLivePhotoToastCount = 2;
2021-08-10 08:08:07 +00:00
const String kLivePhotoToastCounterKey = "show_live_photo_toast";