2

I am developing whatsapp conversation archiving app and i want import conversations from whatsapp.

There is "Export Chat" button at whatsapp and it is opening uiactivityviewcontroller but how can i my app to that list ?

mTuran
  • 1,846
  • 4
  • 32
  • 58

1 Answers1

1

It seems WhatsApp is using a UIActivityViewController instead of a UIDocumentInteractionController. So there is no way to get your app listed unless your app implements the proper app extension. I see the Google Drive app listed as an option and your screenshot shows the Pocket app. Those two apps must implement the appropriate app extension to appear on the list.

See the App Extension Programming Guide. You probably need to implement either an Action or Share extension to get listed.

rmaddy
  • 314,917
  • 42
  • 532
  • 579