Hi,

   In the manifest file of both applications you have to give
permissions.
In the manifest file of application with content provider you have to
give the following permission........

 <provider android:name="................."
                android:authorities="............................."
            android:readPermission = "/*Package name of Content
provider*/.Permission.READ"
            android:writePermission = "/*Package name of Content
provider*/.Permission.WRITE"
            android:multiprocess = "true" android:exported="true"
            />

In the manifest file of application you going to use this provider,
you havr to give uses permission

<uses-permission android:name="/*Package name of Content
provider*/.Permission.READ" />
     <uses-permission android:name="/*package name of Content
provider*/.Permission.WRITE" />

You have to give the same permissions in both manifests........

Regards,
SREEHARI.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using "remove me" as the subject.

Reply via email to