Skip to content

Commit

Permalink
Fix package name of generated Res file when project is building for…
Browse files Browse the repository at this point in the history
… JsTarget (JetBrains#4295)
  • Loading branch information
bsroomy committed Feb 13, 2024
1 parent d99cf15 commit 682a2d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private fun Project.configureResourceGenerator(commonComposeResourcesDir: File,
val group = project.group.toString().lowercase().asUnderscoredIdentifier()
append(group)
if (group.isNotEmpty()) append(".")
append(project.name.lowercase())
append(project.name.lowercase().asUnderscoredIdentifier())
append(".generated.resources")
}
}
Expand Down

0 comments on commit 682a2d7

Please sign in to comment.