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
Copy file name to clipboardExpand all lines: build.gradle.kts
+60-5
Original file line number
Diff line number
Diff line change
@@ -144,9 +144,65 @@ publishing {
144
144
}
145
145
}
146
146
147
-
val exclusionList =listOf(
148
-
"lifecycle-*",
149
-
"savedstate*",
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
167
-
implementation(fileTree(mapOf("dir" to "build/jar", "include" to listOf("*.jar"), "exclude" to exclusionList)))
222
+
implementation(fileTree(mapOf("dir" to "build/jar", "include" to includeList)))
0 commit comments