2

I am working on Sticker pack application. I add some custom stickers in Sticker pack. When I tried to run the application on simulator it always says:-

Could not attach to pid : “7722”

enter image description here

pkc456
  • 8,350
  • 38
  • 53
  • 109
  • Did you try closing the simulator and run again ? – Teja Nandamuri Nov 03 '16 at 16:58
  • Possible duplicate of [Could not attach to pid : “####” unable to attach](http://stackoverflow.com/questions/37582096/could-not-attach-to-pid-unable-to-attach) – NobodyNada Nov 03 '16 at 17:13
  • @TejaNandamuri, Yes I did. Now error is different(pid: 8747). I think message extension app is not working perfectly with simulator. I will test it on device. – pkc456 Nov 03 '16 at 17:15
  • @NobodyNada, I checked that but that question is not related to imessage extension. However I reset/kill the simulator, it doesn't works. – pkc456 Nov 03 '16 at 17:15
  • @pkc456 I don't think it has anything to do with being an iMessage extension; that error means the debugger was unable to connect to the app. Have you tried choosing "Reset Content and Settings" from the Simulator menu, and have you tried restarting your computer? – NobodyNada Nov 03 '16 at 17:18
  • Does your extension launch successfully after this message? – Andrey Kuznetsov Nov 08 '16 at 02:35
  • @AndreyKuznetsov, No, it is not launching successfully. In the iMessage app, only app logo is visible. No stickers are visible. – pkc456 Nov 08 '16 at 05:39

1 Answers1

1

It looks like you've got multiple bundle identifiers. com.tutsplus.BasicStickerPack.StickerPackExtension and com.programmingcrew.funsticker.StickerPackExtension

Check your project/target settings and make sure the bundle identifiers are set correctly.

Zig
  • 2,603
  • 1
  • 14
  • 20