skip
skip copied to clipboard
Skip transpiler for creating SwiftUI apps for iOS and Android
executing command: /opt/homebrew/bin/skip version Skip version 1.2.31 executing command: /usr/bin/sw_vers --productVersion 14.5 executing command: /usr/sbin/sysctl -n sysctl.proc_translated 0 executing command: /usr/bin/swift -version Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1) Target: arm64-apple-macosx14.0...
In SwiftUI, you can use the `.environment()` modifier to set a custom default font, like this: ``` .environment(\.font, .custom("Protest Guerrilla", size: 30.0)) ``` But Skip has a type inference bug...
Apropos #345 and #346, it's _very_ complicated to set up fonts correctly in a Skip app, and worst part is that when you mess it up, the build succeeds, and...
When you put images in `Sources/MyApp/Resources`, they're automatically available to Android. But, for fonts, https://skip.tools/docs/modules/skip-ui/#custom-fonts explains that you have to manually put the file (or a symlink) in `Android/app/src/main/res/font`. Skip...
In https://github.com/skiptools/skipapp-showcase/pull/21 I fixed the Showcase app to build on native macOS (without Catalyst). In the course of doing that, I wrapped some modifiers in `#if !os(macOS)` blocks, like this:...
https://skip.tools/docs/deployment/#export-signing > # Signing the Exported Android Artifacts > By default, the exported .build/skip-export/AppName-debug.apk file is signed with a single-use temporary signature, which means that you can install it on...
If you want to change the package name of a Skip app from "hello.skip" to "hello.skipxyz", you need to perform the following 4 steps (see attached screenshot): 1. Edit `Skip.env`...
https://skip.tools/docs/faq/#ci > **Can Skip frameworks be built and tested using continuous integration systems?** > Skip framework projects contain built-in support for running [parity tests](https://skip.tools/docs/faq/#parity_tests) for both the Swift and Kotlin...
https://skip.tools/docs/deployment/ should say that for your first time uploading an app to App Store Connect, your best bet is almost certainly to use Xcode's Archive feature. _Then_, when you want...