Affirm / affirm-merchant-sdk-ios

Integrate Affirm into your iOS app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AirDrop icon missing in UIActivityViewController

jakubpetrik opened this issue · comments

IMG_DD262A765686-1

Steps to reproduce:

  1. Create new Xcode project
  2. Add button with action:
@IBAction func share() {
    let shareSheet = UIActivityViewController(activityItems: [URL(string: "http://placekitten.com/800/600")!], applicationActivities: nil)
    present(shareSheet, animated: true, completion: nil)
}
  1. Launch the app, tap the share button and observe share sheet (AirDrop icon is fully visible)
  2. Add AffirmSDK pod to project
  3. Repeat step 3 and observe AirDrop icon (badge visible, but icon is missing)

We're also seeing this exact same bug in our project. When we remove the SDK, the icon normally appears in the sheet. Any updates on this?