| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Android Context Provider is a simple utility library that allows you to easily access the application context from anywhere in your app. This can be especially useful for situations where accessing the context in a static manner is needed.
🛠️ Uses 0 dependencies, making it lightweight and easy to integrate.
💪 Easy initialization with your application context.
🎮 Access the application context from any part of your code.
The library is available on Maven Central.
To import it into your project, add the following to your build.gradle.kts file:
implementation("io.github.kdroidfilter:androidcontextprovider:1.0.1")or in Groovy :
implementation 'io.github.kdroidfilter:androidcontextprovider:1.0.1'✨ Automatic Initialization The ContextProvider is automatically initialized using a ContentProvider, which means you do not need to explicitly initialize it in your Application class. This reduces boilerplate and ensures that the ContextProvider is ready to use as soon as your app launches.
🔎 Getting the Context
You can access the application context (not an activity context) from anywhere in your app like this:
val context = ContextProvider.getContext()
// Use the context as neededor in Java :
Context context = ContextProvider.getContext();
// Use the context as neededThis project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! If you find any issues or have improvements to suggest, feel free to open an issue or a pull request on GitHub.
| Back | FazBrowse Home | New Git URL |