diff --git a/.changeset/cool-pillows-vanish.md b/.changeset/cool-pillows-vanish.md new file mode 100644 index 000000000..84575fe4a --- /dev/null +++ b/.changeset/cool-pillows-vanish.md @@ -0,0 +1,5 @@ +--- +'rock-docs': patch +--- + +fix(docs): add missing section to create 'default' SoftwareComponent for Maven publishing in standalone setup diff --git a/.changeset/legal-candies-sing.md b/.changeset/legal-candies-sing.md new file mode 100644 index 000000000..22bbd1367 --- /dev/null +++ b/.changeset/legal-candies-sing.md @@ -0,0 +1,5 @@ +--- +'rock-docs': patch +--- + +fix(docs): add IS_EDGE_TO_EDGE_ENABLED buildConfigField to android brownfield docs diff --git a/website/src/docs/brownfield/android.mdx b/website/src/docs/brownfield/android.mdx index 27aac6e5e..f13cca446 100644 --- a/website/src/docs/brownfield/android.mdx +++ b/website/src/docs/brownfield/android.mdx @@ -150,9 +150,16 @@ android { defaultConfig { minSdk = 24 + buildConfigField("boolean", "IS_EDGE_TO_EDGE_ENABLED", properties["edgeToEdgeEnabled"].toString()) buildConfigField("boolean", "IS_NEW_ARCHITECTURE_ENABLED", properties["newArchEnabled"].toString()) buildConfigField("boolean", "IS_HERMES_ENABLED", properties["hermesEnabled"].toString()) } + + publishing { + multipleVariants { + allVariants() + } + } } ```