()
| 1 | export function getSolidLogo() { |
| 2 | if ( |
| 3 | NSBundle.mainBundle?.objectForInfoDictionaryKey("NativeScriptApplication") |
| 4 | ) { |
| 5 | const logo = NSBundle.mainBundle.pathForResourceOfType("solid", "png"); |
| 6 | return logo; |
| 7 | } else { |
| 8 | return import.meta.resolve("../assets/solid.png"); |
| 9 | } |
| 10 | } |