Skip to content

Commit

Permalink
Remove unused <uses-sdk android:minSdkVersion="..." />
Browse files Browse the repository at this point in the history
Issue id: GradleOverrides
This minSdkVersion value (...) is not used; it is always overridden by the value specified in the Gradle build script (...)
Inspection info: The value of (for example) minSdkVersion is only used if it is not specified in the build.gradle build scripts. When specified in the Gradle build scripts, the manifest value is ignored and can be misleading, so should be removed to avoid ambiguity.
  • Loading branch information
TWiStErRob authored and sjudd committed Aug 8, 2023
1 parent ce2f495 commit 8c058c1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion integration/compose/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bumptech.glide.integration.compose">
<uses-sdk android:minSdkVersion="21" />
</manifest>
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bumptech.glide.integration.sqljournaldiskcache">
<uses-sdk android:minSdkVersion="14" />
</manifest>

0 comments on commit 8c058c1

Please sign in to comment.