Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,17 @@ LSPass: [Property.of()](https://github.com/michalbednarski/LeakValue?tab=readme-

## Integration

Gradle:
Google Play doesn't allow apps to use hidden APIs, reporting library usage will cause your app to fail app review,
you need to disable dependencies info reporting in build.gradle.
Remember to update this library to latest version to be compatible with new Android version.

```gradle
android {
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
}
repositories {
mavenCentral()
}
Expand Down
Loading