0

How would you pull info from another app on the users phone. For example if I wanted to take all the emails a user has on their google inbox app or all the transactions from the users chase app and display them, how would I do that?

I understand first you'd need the user to sign in to their app Im sure I can manage how to figure out that. But how would I pull their data to my app and display it?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Nippy LLC
  • 29
  • 2

1 Answers1

0

You would have to use an API for the app you are trying to pull information from. Google offers an API for Gmail and it is possible to access bank information through an API (see Is there an API to get bank transaction and bank balance?).

Although, if you are developing two apps on the same team you can use Keychain Sharing and App Groups to share data between your own apps.

corym
  • 382
  • 1
  • 4
  • 14