The Instant Android documentation says that the following features are unsupported for instant apps:
- Externally accessible content providers
- Access to content providers from other applications
I am currently refactoring an Android app so that it supports instant apps. This app uses a content provider for storing data and is not externally accessible.
I wanna know if it is possible to use a content provider within an instant app which is only accessible inside that specific app. Currently it does instantiate the content provider but the content resolver returns null when trying to retrieve the provider. It does work with the installable app.