Error: Input file is missing or of an unsupported image format

I’m running exp build:ios and I’m having a really hard time uploading assets (I can see from the logs that no assets are being uploaded - No assets to upload, skipped)

When I have

"assetBundlePatterns": [
      "assets/images/*"
    ]

in the app.json the build fails and I get this error:
Error: Failed to resize image: AppIcon20x20@2x.png. (Error: Input file is missing or of an unsupported image format)

I did some research and changed the app.json to:

"assetBundlePatterns": [
      "**/*"
    ]

but then I get a different error:
Cannot read property ‘forEach’ of undefined

I’m stuck and would really appreciate any help!

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.