mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-07-10 14:38:43 +02:00
b29dc63337
- Add ProGuard rules for Flutter plugins (path_provider, local_notifications, receive_sharing_intent, etc.) - Upgrade Go to 1.25.6 for 16KB page alignment support - Expand ProGuard rules for Go backend and Kotlin coroutines - Fix R8 stripping plugin implementations in release builds
21 lines
748 B
Dart
21 lines
748 B
Dart
/// App version and info constants
|
|
/// Update version here only - all other files will reference this
|
|
class AppInfo {
|
|
static const String version = '3.3.1';
|
|
static const String buildNumber = '68';
|
|
static const String fullVersion = '$version+$buildNumber';
|
|
|
|
|
|
static const String appName = 'SpotiFLAC';
|
|
static const String copyright = '© 2026 SpotiFLAC';
|
|
|
|
static const String mobileAuthor = 'zarzet';
|
|
static const String originalAuthor = 'afkarxyz';
|
|
|
|
static const String githubRepo = 'zarzet/SpotiFLAC-Mobile';
|
|
static const String githubUrl = 'https://github.com/$githubRepo';
|
|
static const String originalGithubUrl = 'https://github.com/afkarxyz/SpotiFLAC';
|
|
|
|
static const String kofiUrl = 'https://ko-fi.com/zarzet';
|
|
}
|