You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val sourceSets = project.the<SourceSetContainer>()
@@ -143,20 +144,82 @@ publishing {
143
144
}
144
145
}
145
146
147
+
/**
148
+
* List of aar files to include in the jar. Some jars are being omitted because they are not needed for the JVM.
149
+
* - lifecycle-*: exclude lifecycle libs due to https://github.com/GitLiveApp/firebase-java-sdk/pull/15 - remove the exclude once the dependencies in the aars are updated to the required version
150
+
* - savedstate: Excluded due to this library already being included as part of the compose mutliplatform dependencies. It does not seem to be directly needed by the firebase libraries.
// exclude lifecycle libs due to https://github.com/GitLiveApp/firebase-java-sdk/pull/15 - remove the exclude once the dependencies in the aars are updated to the required version
159
-
api(fileTree(mapOf("dir" to "build/jar", "include" to listOf("*.jar"), "exclude" to listOf("lifecycle-*"))))
222
+
api(fileTree(mapOf("dir" to "build/jar", "include" to includeList)))
0 commit comments