Just recently I uploaded a new build for our app to release and I received this error via email and in the play console. This lead me down the road to figure out which SDK was including this dependency.
Using the gradle task :app:dependencyReport
I found the dependency that includes it.
<code>+--- androidx.navigation:navigation-dynamic-features-fragment:2.7.7
| +--- androidx.navigation:navigation-dynamic-features-runtime:2.7.7
| | +--- androidx.navigation:navigation-runtime:2.7.7 (*)
| | +--- com.google.android.play:feature-delivery:2.0.1
| | | +--- ...
</code>
<code>+--- androidx.navigation:navigation-dynamic-features-fragment:2.7.7
| +--- androidx.navigation:navigation-dynamic-features-runtime:2.7.7
| | +--- androidx.navigation:navigation-runtime:2.7.7 (*)
| | +--- com.google.android.play:feature-delivery:2.0.1
| | | +--- ...
</code>
+--- androidx.navigation:navigation-dynamic-features-fragment:2.7.7
| +--- androidx.navigation:navigation-dynamic-features-runtime:2.7.7
| | +--- androidx.navigation:navigation-runtime:2.7.7 (*)
| | +--- com.google.android.play:feature-delivery:2.0.1
| | | +--- ...
I did check with Maven, at the time of this post this is the latest stable release 2.7.7 https://mvnrepository.com/artifact/androidx.navigation/navigation-dynamic-features-fragment
Any advise would be greatly appreciated.