I have two applications. I\'m trying to share a file from application A to application B using a FileProvider. Application A calls the insert method on a ContentProvider i
The first problem in your code is exported attribute set to false. Please change it to true as,
The second thing you have to do is, If external application App B is using content provider in App A.Then in App A manifest file mention permission as,
and in App B mention uses-permission as,
Please let me know whether your problem has solved or not. If not please send your entire code. I will try to find the problem. Thank you.