I have skip project with various dependencies, but when I upload it to AppStoreConnect or PlayStore I always receive the warning of missing DSYM. Recently I've added the Crashlytics dependencies through skip-firebase package but it seems that without dsym (also crashlytics complains about missing dsym) it mostly useless.
I've tried to look for generated dsym inside the derived data folder of Xcode, but I could only find one named skipstone.DSYM under Build\Products\PluginExecutables
I've checked on my target build settings and under Build options->Debug Information Format->Release I have DWARF with dSYM File.
Here's my Package file content:
// This is a Skip (https://skip.dev) package.
import PackageDescription
let package = Package(
name: "presenze-junohr",
defaultLocalization: "en",
platforms: [.iOS("17.4")],
products: [
.library(name: "JunoHR", type: .dynamic, targets: ["JunoHR"]),
],
dependencies: [
.package(url: "https://source.skip.tools/skip.git", from: "1.8.0"),
.package(url: "https://source.skip.tools/skip-ui.git", from: "1.0.0"),
.package(path: "../presenze-core"),
.package(url: "https://source.skip.tools/skip-firebase.git", "0.0.0"..<"2.0.0")
],
targets: [
.target(name: "JunoHR", dependencies: [
.product(name: "SkipUI", package: "skip-ui"),
.product(name: "PresenzeCoreApp", package: "presenze-core"),
.product(name: "SkipFirebaseMessaging", package: "skip-firebase"),
.product(name: "SkipFirebaseCrashlytics", package: "skip-firebase")
], resources: [.process("Resources")], plugins: [.plugin(name: "skipstone", package: "skip")])
]
)
Any help is really appreciated, even also on how to possibly generate and upload dSYM file for Android build too.
Thanks
I have skip project with various dependencies, but when I upload it to AppStoreConnect or PlayStore I always receive the warning of missing DSYM. Recently I've added the Crashlytics dependencies through skip-firebase package but it seems that without dsym (also crashlytics complains about missing dsym) it mostly useless.
I've tried to look for generated dsym inside the derived data folder of Xcode, but I could only find one named skipstone.DSYM under
Build\Products\PluginExecutablesI've checked on my target build settings and under
Build options->Debug Information Format->ReleaseI have DWARF with dSYM File.Here's my Package file content:
Any help is really appreciated, even also on how to possibly generate and upload dSYM file for Android build too.
Thanks