I need to have several apps using a same content provider. The first app that the user install creates the provider and adds a UUID, every other app, when installed, check if this provider already exists and use that UUID, or, if there is no other app installed before, they create the content provider with the UUID for the others app to use.
How can I achieve this, having several apps managing the same content provider without the following error generating problems for having the same authority.
INSTALL_FAILED_CONFLICTING_PROVIDER
Can I, somehow, change the provider authority and have it access the same content provider? If I change the authority and use the same url it tells me it isn't valid.
Thanks!