Why are two different applications using aviary sdk not installed on the same device?

I developed two applications using the Aviary SDK, both have different keys. Application links:

Sketcher for photos

Photo editor

I am having a strange problem when installing both applications from the play store. If it is already installed in the device, then when installing another, it gives me the duplicate authority of the supplier .

But I created different secret keys for both applications and placed them accordingly. Even if I get this error.

How can I solve this problem?

+6
source share
1 answer

Check the manifest file of both applications, you probably set the same permissions (e.g. android:authorities=com.exaple ) for your provider. Modify and make it unique as for the application. You can use the package name, for example android:authorities="{your.package.name}.YourProvider" .

+3
source

All Articles