A Kotlin library for common Android utility methods.
- Add the JitPack repository to your build file.
Add it in your root
settings.gradle.kts
at the end of repositories:
dependencyResolutionManagement {
repositories {
...
maven { url = uri("https://jitpack.io") }
}
}
- Add the dependency in your app level
build.gradle.kts
:
dependencies {
implementation("com.github.OlukaDenis:spark-utils:v0.0.1") // Use the exact tag from releases
}
To find the latest version:
- Check the Releases page for the latest tag
- Or visit JitPack to see all available versions
Here are some examples of how to use the library:
// Example usage code here
- Feature 1
- Feature 2
- Feature 3
- Android API level 21 or higher
- Kotlin 1.9.0 or higher
- Fork it
- Create your feature branch (
git checkout -b feature/my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin feature/my-new-feature
) - Create new Pull Request
Copyright 2024 Denis Oluka
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Denis Oluka - GitHub