Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ open class ExpoPublishingHelper(val brownfieldAppProject: Project) {
@Suppress("UNCHECKED_CAST")
(json["variants"] as? List<MutableMap<String, Any>>)?.forEach { variant ->
Logging.log(
"Injecting dependency to Gradle module JSON for variant" +
"Injecting dependency to Gradle module JSON for variant " +
"'${variant["name"]}': ${dependencyToAdd.groupId}:" +
"${dependencyToAdd.artifactId}:${dependencyToAdd.version}",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ object Constants {
ArtifactMatcher(groupId = StringMatcher.literal("host.exp.exponent")),
ArtifactMatcher(groupId = StringMatcher.literal("BareExpo")),
ArtifactMatcher(groupId = StringMatcher.regex("expo.*")),
// below: groupId of the local Expo app itself that may be referenced by some of the Expo packages
ArtifactMatcher(groupId = StringMatcher.literal("ExpoApp")),
// below: a broken transitive dependency that has no version specified and thus breaks the build
ArtifactMatcher(
groupId = StringMatcher.literal("org.jetbrains.kotlin"),
Expand Down
Loading