From 816b738be942457de469375fad917720658299a4 Mon Sep 17 00:00:00 2001 From: vvb2060 Date: Wed, 3 Sep 2025 16:55:35 +0800 Subject: [PATCH] disable dependenciesInfo --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b5079d8..6bd3090 100644 --- a/README.md +++ b/README.md @@ -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() }