what i've done so far

This commit is contained in:
eevee
2025-06-17 19:25:23 +03:00
parent 727fd664ef
commit 92e6cc7900
47 changed files with 298 additions and 271 deletions
@@ -0,0 +1,13 @@
import UIKit
extension UIDevice {
var isIpad: Bool {
self.userInterfaceIdiom == .pad
}
var musixmatchAppId: String {
UIDevice.current.isIpad
? "mac-ios-ipad-v1.0"
: "mac-ios-v2.0"
}
}