fix: removed the proprietary Google Play Core dependencies to make compliant with F-Droid!

This commit is contained in:
Ujwal
2026-02-24 02:46:50 +05:45
parent 5232b8b0a9
commit d4be176f73
2 changed files with 20 additions and 6 deletions

View File

@@ -62,6 +62,12 @@ android {
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
configurations.all {
exclude(group = "com.google.android.play", module = "core")
exclude(group = "com.google.android.play", module = "core-common")
exclude(group = "com.google.android.play", module = "feature-delivery")
}
}
dependencies {