0

I've several android apps published on Google Play store. I want to generate my custom id to identify a device, that should be shared across my all apps. I'm thinking to create a custom content provider that can generate the custom id to be shared across all my apps. Is there any better solution than this?

hermann
  • 6,237
  • 11
  • 46
  • 66
bianca
  • 7,004
  • 12
  • 43
  • 58

1 Answers1

0

Correct, if you are storing data that needs to be shared between your suite of apps, then the custom content provider is the way to go.

If all you need is a global device identifier, please review this answer for a unique ID to use: Is there a unique Android device ID?

Community
  • 1
  • 1
rbios13
  • 16
  • 2