Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why two different app using aviary sdk not installed in same device?

I have developed two apps using Aviary SDK, Both have different keys. The app links are :

Photo Sketcher

Photo Editor

I am facing an strange issue while installing both apps from play store. If one installed already in a device then while installing other, It's giving me duplicate provider authority.

But I have created different secret keys for both apps and put those respectively. Even though I am getting this error.

How can I resolve this issue ?

like image 335
TheLittleNaruto Avatar asked Jan 30 '14 04:01

TheLittleNaruto


1 Answers

Check Manifest file of both apps, you have probably put same authority (eg. android:authorities=com.exaple ) for both of your provider. Change and make it unique for both app. You can use package name likeandroid:authorities="{your.package.name}.YourProvider".

like image 113
Jaiprakash Soni Avatar answered Sep 18 '22 07:09

Jaiprakash Soni