Skip to content

Can't find DSYM file for archive App. #703

@macshodan

Description

@macshodan

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions