Skip to content

Commit

Permalink
Remove the AndroidManifest from the android-api module (#164)
Browse files Browse the repository at this point in the history
It was meant to be included only in the impl module.
  • Loading branch information
ansman authored May 8, 2024
1 parent 8301291 commit 23199d8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
6 changes: 6 additions & 0 deletions android/api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ plugins {
id("library.publishing")
}

android {
lint {
baseline = file("lint-baseline.xml")
}
}

dependencies {
api(projects.core)
implementation(libs.dagger)
Expand Down
11 changes: 11 additions & 0 deletions android/api/lint-baseline.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<issues format="6" by="lint 8.4.0" type="baseline" client="gradle" dependencies="false" name="AGP (8.4.0)" variant="all" version="8.4.0">

<issue
id="EnsureInitializerMetadata"
message="Every Initializer needs to be accompanied by a corresponding &lt;meta-data> entry in the AndroidManifest.xml file.">
<location
file="src/main/kotlin/se/ansman/dagger/auto/android/AutoDaggerStartupInitializer.kt"/>
</issue>

</issues>
16 changes: 0 additions & 16 deletions android/api/src/main/AndroidManifest.xml

This file was deleted.

0 comments on commit 23199d8

Please sign in to comment.