Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thirdegg/lint-rules
Lint rules for android. Checked Exceptions for kotlin.
https://github.com/thirdegg/lint-rules
android checked-exceptions kotlin lint
Last synced: 2 months ago
JSON representation
Lint rules for android. Checked Exceptions for kotlin.
- Host: GitHub
- URL: https://github.com/thirdegg/lint-rules
- Owner: thirdegg
- License: apache-2.0
- Created: 2019-03-02T18:37:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-08T10:40:55.000Z (over 3 years ago)
- Last Synced: 2024-08-03T18:20:01.197Z (6 months ago)
- Topics: android, checked-exceptions, kotlin, lint
- Language: Kotlin
- Homepage:
- Size: 161 KB
- Stars: 15
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![GitHub](https://img.shields.io/github/license/thirdegg/lint-rules.svg)
[![JitPack](https://jitpack.io/v/thirdegg/lint-rules.svg)](https://jitpack.io/#thirdegg/lint-rules)
# Android lint rulesAdd to your project ```build.gradle```:
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```and to module ```build.gradle```:
```gradle
dependencies {
...
implementation 'com.github.thirdegg:lint-rules:0.1.0'
}
```How to update:
Sometimes, after changing the version of a plugin in dependencies, android studio does not give any effect. In order for the changes to work, you need to do `Build > Clear Project` and rebuild the project.
## Checked Exceptions for kotlin
How it works:![](checked-exceptions.png)