diff --git a/.changeset/eleven-symbols-clap.md b/.changeset/eleven-symbols-clap.md new file mode 100644 index 000000000..fd6c375b7 --- /dev/null +++ b/.changeset/eleven-symbols-clap.md @@ -0,0 +1,6 @@ +--- +'@rock-js/plugin-brownfield-android': patch +'rock-docs': patch +--- + +fix: update brownfield-gradle-plugin to 0.5 diff --git a/packages/plugin-brownfield-android/template/android/build.gradle b/packages/plugin-brownfield-android/template/android/build.gradle index 5280c5f1b..72554ef8a 100644 --- a/packages/plugin-brownfield-android/template/android/build.gradle +++ b/packages/plugin-brownfield-android/template/android/build.gradle @@ -15,7 +15,7 @@ buildscript { classpath("com.android.tools.build:gradle") classpath("com.facebook.react:react-native-gradle-plugin") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin") - classpath("com.callstack.react:brownfield-gradle-plugin:0.4.0") + classpath("com.callstack.react:brownfield-gradle-plugin:0.5.0") } } diff --git a/website/src/docs/brownfield/android.mdx b/website/src/docs/brownfield/android.mdx index 46427f08a..329b89fc8 100644 --- a/website/src/docs/brownfield/android.mdx +++ b/website/src/docs/brownfield/android.mdx @@ -55,7 +55,7 @@ We need a special Gradle plugin to create an AAR that includes all dependencies. mavenCentral() } dependencies { - classpath("com.callstack.react:brownfield-gradle-plugin:0.4.0") // check the latest version + classpath("com.callstack.react:brownfield-gradle-plugin:0.5.0") // check the latest version } } ```