File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
example/thirdparty/androidtodo
libs/androidlib/src/mill/androidlib Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ object app extends AndroidAppKotlinModule with AndroidR8AppModule with AndroidBu
36
36
)
37
37
)
38
38
}
39
+
40
+ // TODO consider using a debug module
39
41
def debugSources = Task.Sources("src/debug/java")
40
42
41
43
override def sources = super.sources() ++ debugSources()
Original file line number Diff line number Diff line change @@ -233,7 +233,8 @@ trait AndroidAppModule extends AndroidModule { outer =>
233
233
PathRef (ref.path),
234
234
ref.path.subRelativeTo(metaInfRoot(ref.path))
235
235
)
236
- )
236
+ ).distinctBy(_.destination)
237
+
237
238
}
238
239
239
240
/**
@@ -1025,10 +1026,6 @@ trait AndroidAppModule extends AndroidModule { outer =>
1025
1026
PathRef (destManifest)
1026
1027
}
1027
1028
1028
- override def androidPackageMetaInfoFiles : T [Seq [AndroidPackageableExtraFile ]] = Task {
1029
- Seq .empty[AndroidPackageableExtraFile ]
1030
- }
1031
-
1032
1029
private def androidxTestManifests : Task [Seq [PathRef ]] = Task {
1033
1030
androidUnpackArchives().flatMap {
1034
1031
unpackedArchive =>
You can’t perform that action at this time.
0 commit comments