2023-07-06 17:18:41 +03:30
|
|
|
abstract class Constants {
|
2024-02-10 11:39:37 +01:00
|
|
|
static const appName = "Hiddify";
|
2023-07-22 16:02:06 +03:30
|
|
|
static const githubUrl = "https://github.com/hiddify/hiddify-next";
|
2023-07-27 18:03:41 +03:30
|
|
|
static const githubReleasesApiUrl =
|
|
|
|
|
"https://api.github.com/repos/hiddify/hiddify-next/releases";
|
|
|
|
|
static const githubLatestReleaseUrl =
|
|
|
|
|
"https://github.com/hiddify/hiddify-next/releases/latest";
|
2023-11-06 22:00:44 +03:30
|
|
|
static const appCastUrl =
|
2023-11-06 22:05:51 +03:30
|
|
|
"https://raw.githubusercontent.com/hiddify/hiddify-next/main/appcast.xml";
|
2023-07-22 16:02:06 +03:30
|
|
|
static const telegramChannelUrl = "https://t.me/hiddify";
|
2023-12-21 14:22:52 +03:30
|
|
|
static const privacyPolicyUrl = "https://hiddify.com/privacy-policy/";
|
2023-09-17 14:55:46 +03:30
|
|
|
static const termsAndConditionsUrl = "https://hiddify.com/terms/";
|
2024-02-03 12:36:27 +03:30
|
|
|
static const cfWarpPrivacyPolicy =
|
|
|
|
|
"https://www.cloudflare.com/application/privacypolicy/";
|
|
|
|
|
static const cfWarpTermsOfService =
|
|
|
|
|
"https://www.cloudflare.com/application/terms/";
|
2023-07-06 17:18:41 +03:30
|
|
|
}
|