Skip to content

Commit 0f781ba

Browse files
authored
disable dependenciesInfo (#80)
1 parent c723df0 commit 0f781ba

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,17 @@ LSPass: [Property.of()](https://github.com/michalbednarski/LeakValue?tab=readme-
2626

2727
## Integration
2828

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

3133
```gradle
34+
android {
35+
dependenciesInfo {
36+
includeInApk = false
37+
includeInBundle = false
38+
}
39+
}
3240
repositories {
3341
mavenCentral()
3442
}

0 commit comments

Comments
 (0)