help, i use this library (<https://github.com/Chai...
# compose
a
help, i use this library (https://github.com/Chaintech-Network/ComposeMultiplatformScreenCapture) in my app for screenshot functionality, but when i want to publish to playstore, there error:
The following content provider authorities are in use by other developers: network.chaintech.cmp.screenshot.fileprovider
. How to resolve it, any solution?
r
An IA says: • The authority of a ContentProvider must be unique across the entire device. • If another developer, or even you, has previously used the same authority (for example, in another app under your Play account or another project), Google Play will give you this error when you try to publish. • Option 1: Change the authority to a unique one based on your app. In your AndroidManifest.xml, instead of using the fixed string
network.chaintech.cmp.screenshot.fileprovider
, replace it with something that depends on your applicationId, for example: `android:authorities="${applicationId}.cmp.screenshot.fileprovider`" I hope this helps.
c
a
@Rey (Kingg22) i already trying use option 1 but it make the functionality library not works
@curioustechizen awkay thanks
Any alternative library for screenshot?