https://github.com/swayangjit/contentprovider
A sample application that demonstrates sharing data with other applications using ContetProvider
https://github.com/swayangjit/contentprovider
contentprovider contentresolver datasharing
Last synced: about 1 month ago
JSON representation
A sample application that demonstrates sharing data with other applications using ContetProvider
- Host: GitHub
- URL: https://github.com/swayangjit/contentprovider
- Owner: swayangjit
- License: apache-2.0
- Created: 2021-01-25T10:13:47.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-30T18:58:41.000Z (over 5 years ago)
- Last Synced: 2026-01-01T12:25:17.823Z (5 months ago)
- Topics: contentprovider, contentresolver, datasharing
- Language: Kotlin
- Homepage:
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A sample application that demonstrates sharing data with other applications using ContetProvider.
#### Important points to consider while creating a custom content provider
- First create your custom permission and **provide a namespace to those permissions**.
``
``
``
``
- While mentioning the provider in the ``AndroidManifest.xml`` mark the provider as ``exported = true`` and add the read and write permissions to the Provider.
````